abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2
diff options
context:
space:
mode:
authorJeelsBoobz2025-07-19 22:50:27 +0700
committerGitHub2025-07-19 17:50:27 +0200
commitc4a1e2e66475fbed6bc40e6e44732e9ccdb6ad5a (patch)
tree3eb5f835519c556542edb9c42ebef38a008609da /srcs/juloo.keyboard2
parent13acf90541f774101545715f8cf6e8c5b32f9ea6 (diff)
downloadunexpected-keyboard-c4a1e2e66475fbed6bc40e6e44732e9ccdb6ad5a.tar.gz
unexpected-keyboard-c4a1e2e66475fbed6bc40e6e44732e9ccdb6ad5a.zip
Fix autocapitalisation flicker (#1047)
Diffstat (limited to 'srcs/juloo.keyboard2')
-rw-r--r--srcs/juloo.keyboard2/Autocapitalisation.java2
1 files changed, 1 insertions, 1 deletions
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. */