Update some apps to close short press --nobuild

long live the moble app for not handling long presses :D
This commit is contained in:
Sil333033
2023-10-27 20:39:35 +02:00
parent 078cb0381e
commit eedbcde4bc
4 changed files with 6 additions and 3 deletions

View File

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