Skip to content

Commit b586290

Browse files
committed
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.
1 parent 421a3e2 commit b586290

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/components/confirm_gesture.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ typedef struct {
4343
bool confirm_gesture_is_active(component_t* component)
4444
{
4545
confirm_data_t* data = (confirm_data_t*)component->data;
46-
return data->active_top;
46+
return data->active_top || data->bottom_arrow_slidein != 0;
4747
}
4848

4949
/**

0 commit comments

Comments
 (0)