Skip to content

Commit a4380f9

Browse files
committed
Swap Disable BLE and Enable AOD positions in sleep settings
1 parent d98f8e9 commit a4380f9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/settings/Settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Pinetime {
1414
enum class Notification : uint8_t { On, Off, Sleep };
1515
enum class ChimesOption : uint8_t { None, Hours, HalfHours };
1616
enum class WakeUpMode : uint8_t { SingleTap = 0, DoubleTap = 1, RaiseWrist = 2, Shake = 3, LowerWrist = 4 };
17-
enum class SleepOption : uint8_t { AllowChimes = 0, AllowNotify = 1, DisableBle = 2, EnableAOD = 3 };
17+
enum class SleepOption : uint8_t { AllowChimes = 0, AllowNotify = 1, EnableAOD = 2, DisableBle = 3 };
1818
enum class Colors : uint8_t {
1919
White,
2020
Silver,

src/displayapp/screens/settings/SettingSleep.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ namespace Pinetime {
2828
static constexpr std::array<Option, 4> options = {{
2929
{Controllers::Settings::SleepOption::AllowChimes, "Allow Chimes"},
3030
{Controllers::Settings::SleepOption::AllowNotify, "Allow Notify"},
31-
{Controllers::Settings::SleepOption::DisableBle, "Disable BLE"},
3231
{Controllers::Settings::SleepOption::EnableAOD, "Enable AOD"},
32+
{Controllers::Settings::SleepOption::DisableBle, "Disable BLE"},
3333
}};
3434

3535
lv_obj_t* cbOption[options.size()];

0 commit comments

Comments
 (0)