favorites still swapped

This commit is contained in:
RogueMaster
2022-12-26 19:07:39 -05:00
parent 876419e739
commit 826a5f5aef
2 changed files with 3 additions and 2 deletions

View File

@@ -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!

View File

@@ -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