mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-24 05:34:45 -07:00
formatting, text fixes
This commit is contained in:
@@ -42,10 +42,7 @@ void desktop_lock_menu_set_stealth_mode_state(DesktopLockMenuView* lock_menu, bo
|
||||
|
||||
void desktop_lock_menu_set_bt_mode_state(DesktopLockMenuView* lock_menu, bool bt_mode) {
|
||||
with_view_model(
|
||||
lock_menu->view,
|
||||
DesktopLockMenuViewModel * model,
|
||||
{ model->bt_mode = bt_mode; },
|
||||
true);
|
||||
lock_menu->view, DesktopLockMenuViewModel * model, { model->bt_mode = bt_mode; }, true);
|
||||
}
|
||||
|
||||
void desktop_lock_menu_set_idx(DesktopLockMenuView* lock_menu, uint8_t idx) {
|
||||
@@ -68,9 +65,9 @@ void desktop_lock_menu_draw_callback(Canvas* canvas, void* model) {
|
||||
//if(i == DesktopLockMenuIndexLock) {
|
||||
if(i == DesktopLockMenuIndexBt) {
|
||||
if(m->bt_mode) {
|
||||
str = "Bluetooth OFF";
|
||||
str = "Bluetooth Off";
|
||||
} else {
|
||||
str = "Bluetooth ON";
|
||||
str = "Bluetooth On";
|
||||
}
|
||||
} else if(i == DesktopLockMenuIndexStealth) {
|
||||
if(m->stealth_mode) {
|
||||
|
||||
@@ -25,7 +25,7 @@ void power_settings_scene_power_off_on_enter(void* context) {
|
||||
if(!settings.happy_mode) {
|
||||
dialog_ex_set_text(
|
||||
dialog, " I will be\nwaiting for\n you here...", 78, 14, AlignLeft, AlignTop);
|
||||
dialog_ex_set_icon(dialog, 14, 10, &I_dolph_cry_49x54);
|
||||
dialog_ex_set_icon(dialog, 24, 10, &I_dolph_cry_49x54);
|
||||
}
|
||||
dialog_ex_set_left_button_text(dialog, "Settings");
|
||||
dialog_ex_set_right_button_text(dialog, "Power Off");
|
||||
|
||||
Reference in New Issue
Block a user