From f0211e5fcbab990da6b989b533c3e42ca63f5e18 Mon Sep 17 00:00:00 2001 From: Reinhold Gschweicher Date: Mon, 30 Sep 2024 21:22:20 +0200 Subject: [PATCH] TouchHandler: default buttonUnlocksOn to false --- src/touchhandler/TouchHandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/touchhandler/TouchHandler.h b/src/touchhandler/TouchHandler.h index 2eb997c6..3c5f3c56 100644 --- a/src/touchhandler/TouchHandler.h +++ b/src/touchhandler/TouchHandler.h @@ -24,7 +24,7 @@ namespace Pinetime { bool touching; }; - TouchProcessReply ProcessTouchInfo(Drivers::Cst816S::TouchInfos info, bool buttonUnlocksOn); + TouchProcessReply ProcessTouchInfo(Drivers::Cst816S::TouchInfos info, bool buttonUnlocksOn = false); bool IsTouching() const { return currentTouchPoint.touching;