Skip to content

Commit

Permalink
fixed reverse iterate to purple
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Aug 21, 2024
1 parent 6514144 commit 7ca6a40
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions VortexEngine/src/Menus/Menus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,14 @@ bool Menus::runMenuSelection()
} else {
--m_selection;
}
#if ENABLE_EDITOR_CONNECTION == 1
// Hide the editor connection menu because it opens automatically
// TODO: Create a better way to hide this menu color, this menu
// will automatically open when the device is plugged in
if (m_selection == MENU_EDITOR_CONNECTION) {
m_selection--;
}
#endif
Leds::clearAll();
return true;
}
Expand Down

0 comments on commit 7ca6a40

Please sign in to comment.