From 0c4b4a990207e83a2a34f4e14abbd1144b2f3eb4 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 18 Jun 2026 20:01:19 +0000 Subject: [PATCH] fix: keep collapsed reply avatar at the full Size55dp Match the avatar size used by the expanded NoteCompose so the picture stays the same size when a thread reply is collapsed. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_015hwQiQbgboo8LScPdDHDJn --- .../amethyst/ui/screen/loggedIn/threadview/ThreadFeedView.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/threadview/ThreadFeedView.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/threadview/ThreadFeedView.kt index f6b192a279..7723caa518 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/threadview/ThreadFeedView.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/threadview/ThreadFeedView.kt @@ -223,7 +223,6 @@ import com.vitorpamplona.amethyst.ui.theme.EditFieldTrailingIconModifier import com.vitorpamplona.amethyst.ui.theme.FeedPadding import com.vitorpamplona.amethyst.ui.theme.PaddingHorizontal12Modifier import com.vitorpamplona.amethyst.ui.theme.Size20dp -import com.vitorpamplona.amethyst.ui.theme.Size25dp import com.vitorpamplona.amethyst.ui.theme.Size55dp import com.vitorpamplona.amethyst.ui.theme.Size5dp import com.vitorpamplona.amethyst.ui.theme.StdHorzSpacer @@ -523,7 +522,7 @@ private fun CollapsedNoteCompose( .padding(horizontal = 10.dp, vertical = 10.dp), verticalAlignment = Alignment.CenterVertically, ) { - NoteAuthorPicture(baseNote = baseNote, size = Size25dp, accountViewModel = accountViewModel, nav = nav) + NoteAuthorPicture(baseNote = baseNote, size = Size55dp, accountViewModel = accountViewModel, nav = nav) Spacer(modifier = StdHorzSpacer)