From e06ef4b45ad88a9e8cb1d47176a2788e7586bf04 Mon Sep 17 00:00:00 2001 From: Brad Bosch Date: Tue, 23 Dec 2025 18:09:31 -0600 Subject: [PATCH] Make long press move to next screen --- src/graphics/Screen.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index 8bac6936a08..74178a510a3 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -1687,7 +1687,8 @@ int Screen::handleInputEvent(const InputEvent *event) if (!inputIntercepted) { if (event->inputEvent == INPUT_BROKER_LEFT || event->inputEvent == INPUT_BROKER_ALT_PRESS) { showPrevFrame(); - } else if (event->inputEvent == INPUT_BROKER_RIGHT || event->inputEvent == INPUT_BROKER_USER_PRESS) { + } else if (event->inputEvent == INPUT_BROKER_RIGHT || event->inputEvent == INPUT_BROKER_USER_PRESS || + event->inputEvent == INPUT_BROKER_SELECT_LONG) { showNextFrame(); } else if (event->inputEvent == INPUT_BROKER_UP_LONG) { // Long press up button for fast frame switching