summaryrefslogtreecommitdiff
path: root/src/grail-gestures.h
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-08-26 16:29:01 +0200
committerHenrik Rydberg <rydberg@euromail.se>2010-08-26 16:29:01 +0200
commit241c5ec03f649dedc617686cd3163f131c2b4ce9 (patch)
treeb751f3909712d85933297204ec655fc986265776 /src/grail-gestures.h
parent3cd78ffe61b4a5d6430b6453a8e3aa8247b70f6e (diff)
Introduce tapping from any finger configuration
The current code only emits taps from zero fingers to N fingers. This patch introduces tapping from any prior finger configuration. A tap is defined as an increased number of fingers followed by a decrease within the tap timeout. A tap is reported as the maximum number of fingers present during the tap sequence. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/grail-gestures.h')
-rw-r--r--src/grail-gestures.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grail-gestures.h b/src/grail-gestures.h
index e716757..5a242d9 100644
--- a/src/grail-gestures.h
+++ b/src/grail-gestures.h
@@ -98,7 +98,7 @@ int gru_winrotate(struct grail *ge,
98 98
99struct tapping_model { 99struct tapping_model {
100 grail_time_t start; 100 grail_time_t start;
101 int status, ntouch; 101 int ntouch;
102 int active, gid; 102 int active, gid;
103 int nprop; 103 int nprop;
104 grail_prop_t prop[DIM_GRAIL_PROP]; 104 grail_prop_t prop[DIM_GRAIL_PROP];