1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-17 05:15:18 +03:00

Access chan monitor with SHIFT+ENTER instead of just shift on xlite (#7897)

This commit is contained in:
3djc 2020-08-29 22:20:39 +02:00 committed by GitHub
parent 8fbd0126e7
commit 3d363be669
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View file

@ -78,7 +78,7 @@ void menuModelExpoOne(event_t event)
killEvents(event);
}
#elif defined(NAVIGATION_XLITE)
if (event == EVT_KEY_LONG(KEY_SHIFT)) {
if (event == EVT_KEY_FIRST(KEY_ENTER) && IS_SHIFT_PRESSED()) {
pushMenu(menuChannelsView);
killEvents(event);
}