mirror of
https://github.com/FluxaMedia/fluxa.git
synced 2026-08-05 16:29:07 +00:00
fix: restore missing switch-profiles row in Settings hub
The action, i18n strings, and app-level routing to ProfileList already existed, but no row in the Settings hub ever called onSwitchProfiles, so there was no way to reach it from the UI.
This commit is contained in:
parent
72f5010294
commit
cb22014f82
1 changed files with 4 additions and 0 deletions
|
|
@ -350,6 +350,10 @@ private fun SettingsHubContent(
|
|||
modifier = Modifier.size(20.dp)
|
||||
)
|
||||
}
|
||||
SettingsNavRow(
|
||||
AppStrings.t(lang, "settings.switch_profiles"),
|
||||
icon = Icons.Filled.AccountCircle
|
||||
) { onSwitchProfiles() }
|
||||
}
|
||||
|
||||
SettingsSectionHeader(AppStrings.t(lang, "settings.section_preferences"))
|
||||
|
|
|
|||
Loading…
Reference in a new issue