Skip to content

Commit 9c175e2

Browse files
committed
Fix after merge
1 parent 5b969cc commit 9c175e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/displayapp/DisplayApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ namespace {
5454
}
5555

5656
TouchEvents Convert(Pinetime::Drivers::Cst816S::TouchInfos info) {
57-
if (info.isTouch) {
57+
if (info.isValid) {
5858
switch (info.gesture) {
5959
case Pinetime::Drivers::Cst816S::Gestures::SingleTap:
6060
return TouchEvents::Tap;

0 commit comments

Comments
 (0)