From e4a49d5256373111eb04ea7d31f3c89d1ec9f6ea Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Wed, 11 Dec 2024 11:18:44 +0100 Subject: Move numpad script maps to the compose system This removes the Map_char interface, which required a lot of boilerplate to use. --- srcs/juloo.keyboard2/ComposeKey.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'srcs/juloo.keyboard2/ComposeKey.java') diff --git a/srcs/juloo.keyboard2/ComposeKey.java b/srcs/juloo.keyboard2/ComposeKey.java index 9575486..9a4d399 100644 --- a/srcs/juloo.keyboard2/ComposeKey.java +++ b/srcs/juloo.keyboard2/ComposeKey.java @@ -27,7 +27,7 @@ public final class ComposeKey } /** Apply the pending compose sequence to char [c]. */ - static KeyValue apply(int prev, char c) + public static KeyValue apply(int prev, char c) { char[] states = ComposeKeyData.states; char[] edges = ComposeKeyData.edges; -- cgit v1.2.3