diff --git a/CHANGELOG.md b/CHANGELOG.md index dce3aebf6..739ee0864 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,3 @@ ### Fixed: - Desktop: Fix disabling keybinds (by @Willy-JL) +- Settings: Fix duplicates in Power Settings when opening submenus (by @Willy-JL) diff --git a/applications/settings/power_settings_app/scenes/power_settings_scene_start.c b/applications/settings/power_settings_app/scenes/power_settings_scene_start.c index 22c61dd9c..cf9616d96 100644 --- a/applications/settings/power_settings_app/scenes/power_settings_scene_start.c +++ b/applications/settings/power_settings_app/scenes/power_settings_scene_start.c @@ -95,5 +95,5 @@ bool power_settings_scene_start_on_event(void* context, SceneManagerEvent event) void power_settings_scene_start_on_exit(void* context) { PowerSettingsApp* app = context; - submenu_reset(app->submenu); + variable_item_list_reset(app->variable_item_list); }