]> git.earman.xyz Git - sensor-watch.git/commitdiff
countdown:Disable double tap detection
authorPaul Riou <paul@mirliton.io>
Sun, 26 Apr 2026 12:13:28 +0000 (13:13 +0100)
committerPaul Riou <paul@mirliton.io>
Sun, 26 Apr 2026 14:09:45 +0000 (15:09 +0100)
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

index f69478e9b19e93827450363145a829b9cac40d1f..c3ee9207be9dc912756bd867c48d104dfc911ef7 100644 (file)
@@ -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;
     }