Skip to content

Commit

Permalink
fix(bw): Long ENTER not working correctly when using ADJUST GV SF (#4709
Browse files Browse the repository at this point in the history
)
  • Loading branch information
philmoz authored Mar 10, 2024
1 parent 6d316e5 commit 3b98401
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions radio/src/gui/128x64/model_special_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,8 @@ void menuSpecialFunctions(event_t event, CustomFunctionData * functions, CustomF
break;
}

#if !defined(NAVIGATION_X7)
// For X7 type navigation the ENTER long press is handled below
if (attr && event==EVT_KEY_LONG(KEY_ENTER)) {
killEvents(event);
s_editMode = !s_editMode;
Expand All @@ -421,6 +423,7 @@ void menuSpecialFunctions(event_t event, CustomFunctionData * functions, CustomF
CFN_GVAR_MODE(cfn) &= 0x03;
val_displayed = 0;
}
#endif
}
#endif // GVARS
else if (attr) {
Expand Down

0 comments on commit 3b98401

Please sign in to comment.