From 2b715c8ce596e17392ce3b8efd09016e6bdd67c6 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 18 Jun 2026 20:09:35 +0000 Subject: [PATCH] style: shrink collapsed reply avatar to Size40dp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use a 40dp avatar on collapsed thread cards — a middle ground between the initial compact size and the full expanded NoteCompose avatar. 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, 2 insertions(+), 1 deletion(-) 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 28592df613..5df6ba4379 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 @@ -224,6 +224,7 @@ 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.Size40dp import com.vitorpamplona.amethyst.ui.theme.Size55dp import com.vitorpamplona.amethyst.ui.theme.Size5dp import com.vitorpamplona.amethyst.ui.theme.StdHorzSpacer @@ -544,7 +545,7 @@ private fun CollapsedNoteCompose( .padding(horizontal = 10.dp, vertical = 10.dp), verticalAlignment = Alignment.CenterVertically, ) { - NoteAuthorPicture(baseNote = baseNote, size = Size55dp, accountViewModel = accountViewModel, nav = nav) + NoteAuthorPicture(baseNote = baseNote, size = Size40dp, accountViewModel = accountViewModel, nav = nav) Spacer(modifier = StdHorzSpacer)