From 290e930d0f8be8a448c19f98dda068989855d623 Mon Sep 17 00:00:00 2001 From: Lefucjusz Date: Mon, 3 Jun 2024 12:45:13 +0200 Subject: [PATCH] [BH-2000] Change order of entries in Settings Changed order of entries in Settings menu, so that they're grouped in logical categories. --- harmony_changelog.md | 1 + .../application-bell-settings/windows/BellSettingsWindow.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/harmony_changelog.md b/harmony_changelog.md index b09ff8dab..4cb6dacc2 100644 --- a/harmony_changelog.md +++ b/harmony_changelog.md @@ -13,6 +13,7 @@ ### Changed / Improved * Changed the refresh rate of the progress bar screen * Extended range of supported chargers. +* Changed order of options in Settings menu. ## [2.7.0 2024-05-20] diff --git a/products/BellHybrid/apps/application-bell-settings/windows/BellSettingsWindow.cpp b/products/BellHybrid/apps/application-bell-settings/windows/BellSettingsWindow.cpp index f26764d26..4c89a7f5a 100644 --- a/products/BellHybrid/apps/application-bell-settings/windows/BellSettingsWindow.cpp +++ b/products/BellHybrid/apps/application-bell-settings/windows/BellSettingsWindow.cpp @@ -64,13 +64,13 @@ namespace gui addWinSettings(bellSettingsTimeUnitsTitle, window::name::bellSettingsTimeUnits, defaultCallback); addWinSettings( utils::translate("app_bell_settings_language"), gui::window::name::bellSettingsLanguage, defaultCallback); + addWinSettings( + utils::translate("app_bell_settings_frontlight"), gui::BellSettingsFrontlightWindow::name, defaultCallback); addWinSettings( utils::translate("app_bell_settings_shortcuts"), window::name::bellSettingsShortcuts, defaultCallback); addWinSettings(utils::translate("app_bell_update_instruction_title"), window::name::bellSettingsUpdateInstruction, defaultCallback); - addWinSettings( - utils::translate("app_bell_settings_frontlight"), gui::BellSettingsFrontlightWindow::name, defaultCallback); addWinSettings(utils::translate("app_bell_settings_about"), gui::AboutYourBellWindow::name, defaultCallback); addWinSettings( utils::translate("app_bell_settings_turn_off"), BellTurnOffOptionWindow::defaultName, defaultCallback);