From 60028ea595e618df410c2e6c645dc9a8ed0905c4 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 17 Apr 2026 11:58:33 +1000 Subject: [PATCH] doc: fix simplified hold gesture table in gestures.rst The simplified table showed 'Finger 1 down' producing '' but all the detailed examples later in the same document show that a single finger down triggers a hold begin event with finger count 1, followed by a cancel and new begin when the second finger arrives. Update the simplified table to be consistent with the detailed examples and the actual implementation. Co-authored-by: Claude Part-of: --- doc/user/gestures.rst | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/doc/user/gestures.rst b/doc/user/gestures.rst index 17c643db..c0b38d5e 100644 --- a/doc/user/gestures.rst +++ b/doc/user/gestures.rst @@ -108,14 +108,15 @@ Hold gestures have three potential logical states: For example, a user that puts one finger, then a second finger down and releases them later may trigger the following event sequence: -============= ============ ============ -Action Event Finger count -============= ============ ============ -Finger 1 down -Finger 2 down **begin** 2 -Finger 2 up **end** 2 +============= ============== ============ +Action Event Finger count +============= ============== ============ +Finger 1 down **begin** 1 +Finger 2 down **cancel** 1 +\ **begin** 2 +Finger 2 up **end** 2 Finger 1 up -============= ============ ============ +============= ============== ============ A hold gesture may by be **cancelled**. This occurs when the hold gesture changes into some other interaction and should no