diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2021-08-17 13:01:18 (GMT) |
|---|---|---|
| committer | Riku Isokoski <riksu9000@gmail.com> | 2021-08-17 13:01:18 (GMT) |
| commit | 9c175e2f0cd90b56818953b748c8cad3eec2eb89 (patch) | |
| tree | ed4fe46b5b3ddcbcf5028d8132bef5f3bc3f354e /src | |
| parent | 5b969ccfa975632606aa0b3dc8165460effb9cc3 (diff) | |
Fix after merge
Diffstat (limited to 'src')
| -rw-r--r-- | src/displayapp/DisplayApp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index 4b73a20..7fe6939 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -54,7 +54,7 @@ namespace { } TouchEvents Convert(Pinetime::Drivers::Cst816S::TouchInfos info) { - if (info.isTouch) { + if (info.isValid) { switch (info.gesture) { case Pinetime::Drivers::Cst816S::Gestures::SingleTap: return TouchEvents::Tap; |
