From c4a1e2e66475fbed6bc40e6e44732e9ccdb6ad5a Mon Sep 17 00:00:00 2001 From: JeelsBoobz Date: Sat, 19 Jul 2025 22:50:27 +0700 Subject: Fix autocapitalisation flicker (#1047) --- srcs/juloo.keyboard2/Autocapitalisation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcs/juloo.keyboard2/Autocapitalisation.java b/srcs/juloo.keyboard2/Autocapitalisation.java index 21fcaf6..ec730d5 100644 --- a/srcs/juloo.keyboard2/Autocapitalisation.java +++ b/srcs/juloo.keyboard2/Autocapitalisation.java @@ -149,7 +149,7 @@ public final class Autocapitalisation _should_disable_shift = might_disable; // The callback must be delayed because [getCursorCapsMode] would sometimes // be called before the editor finished handling the previous event. - _handler.postDelayed(delayed_callback, 1); + _handler.postDelayed(delayed_callback, 50); } /** Like [callback] but runs immediately. */ -- cgit v1.2.3