mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-16 04:24:45 -07:00
favorites still swapped
This commit is contained in:
@@ -43,6 +43,7 @@ Thank you to all the supporters!
|
|||||||
- Dolphin State Code Optimizations [From ClaraCrazy](https://github.com/ClaraCrazy/Flipper-Xtreme/blob/main/applications/services/dolphin/helpers/dolphin_state.c) with corrections to the level thresholds that were too low.
|
- Dolphin State Code Optimizations [From ClaraCrazy](https://github.com/ClaraCrazy/Flipper-Xtreme/blob/main/applications/services/dolphin/helpers/dolphin_state.c) with corrections to the level thresholds that were too low.
|
||||||
- Added all OFW changes ported by [Unleashed/xMasterX](https://github.com/DarkFlippers/unleashed-firmware).
|
- Added all OFW changes ported by [Unleashed/xMasterX](https://github.com/DarkFlippers/unleashed-firmware).
|
||||||
- Added IR Remote loader from main menu
|
- Added IR Remote loader from main menu
|
||||||
|
- Reflipped Primary/Secondary shortcuts since they are still swapped.
|
||||||
|
|
||||||
## Install from Release
|
## Install from Release
|
||||||
FLASH STOCK FIRST BEFORE UPDATING TO CUSTOM FIRMWARE!
|
FLASH STOCK FIRST BEFORE UPDATING TO CUSTOM FIRMWARE!
|
||||||
|
|||||||
@@ -80,9 +80,9 @@ 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(DesktopMainEventOpenFavoritePrimary, main_view->context);
|
main_view->callback(DesktopMainEventOpenFavoriteSecondary, main_view->context); // UP FOR PRIMARY
|
||||||
} else if(event->key == InputKeyDown) {
|
} else if(event->key == InputKeyDown) {
|
||||||
main_view->callback(DesktopMainEventOpenFavoriteSecondary, main_view->context);
|
main_view->callback(DesktopMainEventOpenFavoritePrimary, main_view->context); // DOWN FOR SECONDARY
|
||||||
} 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
|
||||||
|
|||||||
Reference in New Issue
Block a user