From bd879cb226c1b567b038544bc9bb0f970ffbdb02 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Mon, 3 Jul 2023 09:56:57 +0200 Subject: [PATCH] Use correct icon. --- .../features/preferences/impl/root/PreferencesRootView.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/preferences/impl/src/main/kotlin/io/element/android/features/preferences/impl/root/PreferencesRootView.kt b/features/preferences/impl/src/main/kotlin/io/element/android/features/preferences/impl/root/PreferencesRootView.kt index d1cf0bf6a6..f1e6e7de61 100644 --- a/features/preferences/impl/src/main/kotlin/io/element/android/features/preferences/impl/root/PreferencesRootView.kt +++ b/features/preferences/impl/src/main/kotlin/io/element/android/features/preferences/impl/root/PreferencesRootView.kt @@ -19,8 +19,8 @@ package io.element.android.features.preferences.impl.root import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.padding import androidx.compose.material.icons.Icons -import androidx.compose.material.icons.filled.DeveloperMode import androidx.compose.material.icons.outlined.BugReport +import androidx.compose.material.icons.outlined.DeveloperMode import androidx.compose.material.icons.outlined.Help import androidx.compose.material.icons.outlined.InsertChart import androidx.compose.material.icons.outlined.VerifiedUser @@ -108,7 +108,7 @@ fun PreferencesRootView( fun DeveloperPreferencesView(onOpenDeveloperSettings: () -> Unit) { PreferenceText( title = stringResource(id = CommonStrings.common_developer_options), - icon = Icons.Default.DeveloperMode, + icon = Icons.Outlined.DeveloperMode, onClick = onOpenDeveloperSettings ) }