summaryrefslogtreecommitdiff
path: root/src/touchhandler/TouchHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/touchhandler/TouchHandler.cpp')
-rw-r--r--src/touchhandler/TouchHandler.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/touchhandler/TouchHandler.cpp b/src/touchhandler/TouchHandler.cpp
index a13d1af..90b4d6d 100644
--- a/src/touchhandler/TouchHandler.cpp
+++ b/src/touchhandler/TouchHandler.cpp
@@ -39,13 +39,11 @@ void TouchHandler::Work() {
} else {
x = info.x;
y = info.y;
- if (info.action == 0) {
- lvgl.SetNewTapEvent(info.x, info.y, true);
- } else if (info.action == 1) {
+ if (info.finger == 0) {
lvgl.SetNewTapEvent(info.x, info.y, false);
prevGesture = Pinetime::Drivers::Cst816S::Gestures::None;
isCancelled = false;
- } else if (info.action == 2) {
+ } else if (info.finger == 1) {
if (!isCancelled) {
lvgl.SetNewTapEvent(info.x, info.y, true);
}