abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/ComposeKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'srcs/juloo.keyboard2/ComposeKey.java')
-rw-r--r--srcs/juloo.keyboard2/ComposeKey.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/srcs/juloo.keyboard2/ComposeKey.java b/srcs/juloo.keyboard2/ComposeKey.java
index 4a8cff7..dd805a5 100644
--- a/srcs/juloo.keyboard2/ComposeKey.java
+++ b/srcs/juloo.keyboard2/ComposeKey.java
@@ -14,7 +14,7 @@ public final class ComposeKey
KeyValue res = apply(state, kv.getChar());
// Dim characters not part of any sequence instead of removing them.
if (res == null)
- return kv.withFlags(kv.getFlags() | KeyValue.FLAG_SECONDARY);
+ return kv.withFlags(kv.getFlags() | KeyValue.FLAG_GREYED);
return res;
/* These keys must not be removed. */
case Event:
@@ -25,7 +25,7 @@ public final class ComposeKey
case Keyevent:
case Editing:
case Placeholder:
- return kv.withFlags(kv.getFlags() | KeyValue.FLAG_SECONDARY);
+ return kv.withFlags(kv.getFlags() | KeyValue.FLAG_GREYED);
case Compose_pending: return null;
}
return null;