From b586290fa08d76f02e0ee3cc88845f1f1478c76d Mon Sep 17 00:00:00 2001 From: Niklas Dusenlund Date: Mon, 13 Oct 2025 11:10:04 +0200 Subject: [PATCH] confirm-gesture: extend active duration Extend the duration for when the confirm gesture is active so that involuntary bottom taps are not triggered and so that the confirm gesture triangle isn't rendered blended into the keyboard. --- src/ui/components/confirm_gesture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/components/confirm_gesture.c b/src/ui/components/confirm_gesture.c index 81fbbd8df..8ad36034f 100644 --- a/src/ui/components/confirm_gesture.c +++ b/src/ui/components/confirm_gesture.c @@ -43,7 +43,7 @@ typedef struct { bool confirm_gesture_is_active(component_t* component) { confirm_data_t* data = (confirm_data_t*)component->data; - return data->active_top; + return data->active_top || data->bottom_arrow_slidein != 0; } /**