From 7462955507325bf8f9037a45aec17c15b5f8b9e7 Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sun, 5 Jun 2022 20:15:11 +0200 Subject: Fix "REMOVED" key appearing when typing Fn and Shift Since cc571ea --- srcs/juloo.keyboard2/KeyValue.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'srcs') diff --git a/srcs/juloo.keyboard2/KeyValue.java b/srcs/juloo.keyboard2/KeyValue.java index 3db6222..f91e22d 100644 --- a/srcs/juloo.keyboard2/KeyValue.java +++ b/srcs/juloo.keyboard2/KeyValue.java @@ -306,6 +306,8 @@ final class KeyValue addCharKey("\\t", "\\t", '\t', 0); // Send the tab character addCharKey("space", "\r", ' ', FLAG_KEY_FONT); addCharKey("nbsp", "\u237d", '\u00a0', FLAG_KEY_FONT | FLAG_SMALLER_FONT); + + addKey("removed", "", KIND_STRING, 0, 0); // Dummy key used in [KeyModifier] } // Substitute for [assert], which has no effect on Android. -- cgit v1.2.3