summaryrefslogtreecommitdiff
path: root/src/systemtask
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2021-08-28 15:10:14 +0200
committerJean-François Milants <jf@codingfield.com>2021-08-28 15:10:14 +0200
commit0313277ae604bb46987cdfbef123b7edfeb8ab9e (patch)
tree393b5cda7c723ec3df1e19e2a60a422990483d71 /src/systemtask
parentf895da8634f2843b9c2da330f07c94d2da8b4ec1 (diff)
Fix touchinfo typo in SystemTask.
Diffstat (limited to 'src/systemtask')
-rw-r--r--src/systemtask/SystemTask.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemtask/SystemTask.cpp b/src/systemtask/SystemTask.cpp
index 08e21999..03bf6706 100644
--- a/src/systemtask/SystemTask.cpp
+++ b/src/systemtask/SystemTask.cpp
@@ -241,7 +241,7 @@ void SystemTask::Work() {
break;
case Messages::TouchWakeUp: {
auto touchInfo = touchPanel.GetTouchInfo();
- if (touchInfo.isTouch and ((touchInfo.gesture == Pinetime::Drivers::Cst816S::Gestures::DoubleTap and
+ if (touchInfo.touching and ((touchInfo.gesture == Pinetime::Drivers::Cst816S::Gestures::DoubleTap and
settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::DoubleTap)) or
(touchInfo.gesture == Pinetime::Drivers::Cst816S::Gestures::SingleTap and
settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::SingleTap)))) {