mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-14 09:18:35 -07:00
Slight text updates
This commit is contained in:
@@ -16,7 +16,7 @@ void desktop_scene_fault_on_enter(void* context) {
|
|||||||
popup_set_context(popup, desktop);
|
popup_set_context(popup, desktop);
|
||||||
popup_set_header(
|
popup_set_header(
|
||||||
popup,
|
popup,
|
||||||
"Flipper crashed\n and was rebooted",
|
"Slut passed out\n but is now back",
|
||||||
60,
|
60,
|
||||||
14 + STATUS_BAR_Y_SHIFT,
|
14 + STATUS_BAR_Y_SHIFT,
|
||||||
AlignCenter,
|
AlignCenter,
|
||||||
|
|||||||
@@ -65,12 +65,11 @@ bool desktop_main_input_callback(InputEvent* event, void* context) {
|
|||||||
if(event->key == InputKeyOk) {
|
if(event->key == InputKeyOk) {
|
||||||
main_view->callback(DesktopAnimationEventNewIdleAnimation, main_view->context);
|
main_view->callback(DesktopAnimationEventNewIdleAnimation, main_view->context);
|
||||||
} else if(event->key == InputKeyUp) {
|
} else if(event->key == InputKeyUp) {
|
||||||
main_view->callback(DesktopMainEventOpenFavoriteSecondary, main_view->context);
|
|
||||||
} else if(event->key == InputKeyDown) {
|
|
||||||
main_view->callback(DesktopMainEventOpenFavoritePrimary, main_view->context);
|
main_view->callback(DesktopMainEventOpenFavoritePrimary, main_view->context);
|
||||||
|
} else if(event->key == InputKeyDown) {
|
||||||
|
main_view->callback(DesktopMainEventOpenFavoriteSecondary, main_view->context);
|
||||||
} else if(event->key == InputKeyLeft) {
|
} else if(event->key == InputKeyLeft) {
|
||||||
main_view->callback(
|
main_view->callback(DesktopMainEventOpenSubRemote, main_view->context); // OPENS SUBGHZ REMOTE
|
||||||
DesktopMainEventOpenSubRemote, main_view->context); // OPENS SUBGHZ REMOTE
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ void desktop_settings_scene_favorite_on_enter(void* context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
submenu_set_header(
|
submenu_set_header(
|
||||||
submenu, primary_favorite ? "Primary favorite app:" : "Secondary favorite app:");
|
submenu, primary_favorite ? "Secondary favorite app:" : "Primary favorite app:");
|
||||||
submenu_set_selected_item(submenu, pre_select_item); // If set during loop, visual glitch.
|
submenu_set_selected_item(submenu, pre_select_item); // If set during loop, visual glitch.
|
||||||
|
|
||||||
view_dispatcher_switch_to_view(app->view_dispatcher, DesktopSettingsAppViewMenu);
|
view_dispatcher_switch_to_view(app->view_dispatcher, DesktopSettingsAppViewMenu);
|
||||||
|
|||||||
Reference in New Issue
Block a user