From f946e1aaf4a446ab7dbf9668d2c2c04d7bfeaae2 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 10 Jul 2026 16:50:23 +0000 Subject: [PATCH] fix: use the Topic icon for the composer's subject toggle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The subject/title toggle used the Article (document-lines) glyph, which reads as "body text". Switch to Topic — a clearer signifier for a subject/title line. Codepoint already present in MaterialSymbols, so no font-subset regen needed. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01B5MLY4hq5LXJ2D5WeLRyXj --- .../amethyst/ui/screen/loggedIn/home/ShortNotePostScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/home/ShortNotePostScreen.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/home/ShortNotePostScreen.kt index 184913312a..c0b698c19b 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/home/ShortNotePostScreen.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/home/ShortNotePostScreen.kt @@ -916,7 +916,7 @@ private fun AddSubjectButton( ) { IconButton(onClick = onClick) { Icon( - symbol = MaterialSymbols.AutoMirrored.Article, + symbol = MaterialSymbols.Topic, contentDescription = stringRes(R.string.messages_new_message_subject), modifier = Modifier.height(22.dp), tint = if (isActive) MaterialTheme.colorScheme.primary else MaterialTheme.colorScheme.onBackground,