From 6a304cb1ebc3310b31301bc86b01a0b329d5ed4e Mon Sep 17 00:00:00 2001 From: Paul Riou Date: Sun, 26 Apr 2026 13:13:28 +0100 Subject: [PATCH] countdown:Disable double tap detection With double tap enabled, one had to tap not too fast on the watch to increment the minutes regularly. Otherwise, some taps would be discarded. This made using the countdown face without looking at the screen for acknowledgement of taps impossible. It was also impossible to increment minutes quickly, every second tap would be discarded. --- watch-faces/complication/countdown_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watch-faces/complication/countdown_face.c b/watch-faces/complication/countdown_face.c index f69478e9..c3ee9207 100644 --- a/watch-faces/complication/countdown_face.c +++ b/watch-faces/complication/countdown_face.c @@ -218,7 +218,7 @@ void countdown_face_activate(void *context) { movement_request_tick_frequency(1); quick_ticks_running = false; - if (state->mode != cd_running && movement_enable_tap_detection_if_available(true)) { + if (state->mode != cd_running && movement_enable_tap_detection_if_available(false)) { state->tap_detection_ticks = TAP_DETECTION_SECONDS; state->has_tapped_once = false; }