From 2e23d0da0a7db0f6c03d4eedae3217810788c0a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D1=8B=D1=82=D0=BA=D0=BE=D0=B2=20=D0=A0=D0=BE=D0=BC?= =?UTF-8?q?=D0=B0=D0=BD?= Date: Sun, 17 May 2026 19:29:57 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D1=82=D0=BA=D0=BB=D1=8E=D1=87=D0=B5?= =?UTF-8?q?=D0=BD=20=D1=8D=D0=BA=D1=80=D0=B0=D0=BD=20=D0=BD=D0=B0=D1=81?= =?UTF-8?q?=D1=82=D1=80=D0=BE=D0=B5=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/github/nullptroma/wallenc/ui/WallencUi.kt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/ui/src/main/java/com/github/nullptroma/wallenc/ui/WallencUi.kt b/ui/src/main/java/com/github/nullptroma/wallenc/ui/WallencUi.kt index d953245..10dffd7 100644 --- a/ui/src/main/java/com/github/nullptroma/wallenc/ui/WallencUi.kt +++ b/ui/src/main/java/com/github/nullptroma/wallenc/ui/WallencUi.kt @@ -9,7 +9,6 @@ import androidx.compose.foundation.layout.wrapContentHeight import androidx.compose.material.icons.Icons import androidx.compose.material.icons.automirrored.rounded.List import androidx.compose.material.icons.rounded.Menu -import androidx.compose.material.icons.rounded.Settings import androidx.compose.material.icons.rounded.Sync import androidx.compose.material3.ExperimentalMaterial3Api import androidx.compose.material3.Icon @@ -100,11 +99,13 @@ fun WallencNavRoot( StorageSyncRoute::class.qualifiedName!!, Icons.Rounded.Sync, ), - SettingsRoute::class.qualifiedName!! to NavBarItemData( - R.string.nav_label_settings, - SettingsRoute::class.qualifiedName!!, - Icons.Rounded.Settings - ) + // Settings temporarily hidden from top-level menu. + // Uncomment to restore: + // SettingsRoute::class.qualifiedName!! to NavBarItemData( + // R.string.nav_label_settings, + // SettingsRoute::class.qualifiedName!!, + // Icons.Rounded.Settings, + // ), ) }