mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-10 05:59:08 -07:00
Update some apps to close short press --nobuild
long live the moble app for not handling long presses :D
This commit is contained in:
@@ -239,7 +239,8 @@ int32_t flipper_geiger_app() {
|
||||
|
||||
if(event_status == FuriStatusOk) {
|
||||
if(event.type == EventTypeInput) {
|
||||
if(event.input.key == InputKeyBack && event.input.type == InputTypeLong) {
|
||||
if(event.input.key == InputKeyBack &&
|
||||
(event.input.type == InputTypeShort || event.input.type == InputTypeLong)) {
|
||||
break;
|
||||
} else if(event.input.key == InputKeyOk && event.input.type == InputTypeLong) {
|
||||
counter = 0;
|
||||
|
||||
Reference in New Issue
Block a user