From 1c1344bd4c005e5bffb28c9c6a3c3ec8b84d243d Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Wed, 8 Apr 2026 11:59:57 -0400 Subject: [PATCH] Change relay feed icon from door to storage --- .../amethyst/ui/navigation/topbars/FeedFilterSpinner.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/topbars/FeedFilterSpinner.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/topbars/FeedFilterSpinner.kt index fefd9876f..5e1524a9e 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/topbars/FeedFilterSpinner.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/topbars/FeedFilterSpinner.kt @@ -44,7 +44,7 @@ import androidx.compose.material.icons.outlined.Groups import androidx.compose.material.icons.outlined.LocationOn import androidx.compose.material.icons.outlined.Person import androidx.compose.material.icons.outlined.Public -import androidx.compose.material.icons.outlined.SensorDoor +import androidx.compose.material.icons.outlined.Storage import androidx.compose.material3.Icon import androidx.compose.material3.MaterialTheme import androidx.compose.material3.Surface @@ -527,7 +527,7 @@ private fun FeedIcon( else -> { when (item.name) { is GeoHashName -> Icons.Outlined.LocationOn - is RelayName -> Icons.Outlined.SensorDoor + is RelayName -> Icons.Outlined.Storage is CommunityName -> Icons.Outlined.Groups is PeopleListName -> Icons.AutoMirrored.Outlined.ViewList else -> Icons.Outlined.Person