From 1ce352e69f3fbf90b054949ec8c7eda5f68b6977 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Mon, 20 Oct 2025 21:00:11 -0400 Subject: [PATCH] Changes the icon of account preferences to translation for now --- .../amethyst/ui/navigation/drawer/DrawerContent.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt index abf9712af..f70941252 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt @@ -51,9 +51,9 @@ import androidx.compose.material.icons.outlined.CloudUpload import androidx.compose.material.icons.outlined.Drafts import androidx.compose.material.icons.outlined.GroupAdd import androidx.compose.material.icons.outlined.Key -import androidx.compose.material.icons.outlined.Person import androidx.compose.material.icons.outlined.Security import androidx.compose.material.icons.outlined.Settings +import androidx.compose.material.icons.outlined.Translate import androidx.compose.material3.HorizontalDivider import androidx.compose.material3.Icon import androidx.compose.material3.IconButton @@ -516,7 +516,7 @@ fun ListContent( NavigationRow( title = R.string.user_preferences, - icons = listOf(Icons.Outlined.Person, Icons.Outlined.Settings), + icons = listOf(Icons.Outlined.Translate), tint = MaterialTheme.colorScheme.onBackground, nav = nav, route = Route.UserSettings,