abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/prefs
diff options
context:
space:
mode:
authorJules Aguillon2024-02-17 19:31:52 +0100
committerJules Aguillon2024-02-17 23:28:31 +0100
commit146d5203254aff5fe19b502a922c60a84c31686a (patch)
treec42662fbb6cb0e849694ce44be448ef2b1e1cadf /srcs/juloo.keyboard2/prefs
parent065d9520e571eccca21e28d0e4003ebd4b7079f4 (diff)
downloadunexpected-keyboard-146d5203254aff5fe19b502a922c60a84c31686a.tar.gz
unexpected-keyboard-146d5203254aff5fe19b502a922c60a84c31686a.zip
compose: Grey out keys that are not in sequence
Keys that are not in the pending compose sequence are greyed out with the new 'FLAG_GREYED' flag.
Diffstat (limited to 'srcs/juloo.keyboard2/prefs')
-rw-r--r--srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java b/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java
index a99bbe9..6802d97 100644
--- a/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java
+++ b/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java
@@ -166,7 +166,7 @@ public class ExtraKeysPreference extends PreferenceCategory
setKey(pref_key_of_key_name(key_name));
setDefaultValue(default_checked);
setTitle(title);
- _key_font = kv.hasFlags(KeyValue.FLAG_KEY_FONT);
+ _key_font = kv.hasFlagsAny(KeyValue.FLAG_KEY_FONT);
}
@Override