diff options
| author | Jules Aguillon | 2024-09-29 21:59:07 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2024-09-29 21:59:07 +0200 |
| commit | a1be40263839bf5e2032a4ab244b7942ea4c18f1 (patch) | |
| tree | 2a3cd6542ec75f90ad1bd7bc963cb0d6b340126c /srcs/juloo.keyboard2 | |
| parent | 9f22e53a3ba8f064e69e3a84c371a7f29ee9e05c (diff) | |
| download | unexpected-keyboard-a1be40263839bf5e2032a4ab244b7942ea4c18f1.tar.gz unexpected-keyboard-a1be40263839bf5e2032a4ab244b7942ea4c18f1.zip | |
Fix crash with complex keys
Diffstat (limited to 'srcs/juloo.keyboard2')
| -rw-r--r-- | srcs/juloo.keyboard2/KeyValue.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/srcs/juloo.keyboard2/KeyValue.java b/srcs/juloo.keyboard2/KeyValue.java index 8adacf0..b6c09d5 100644 --- a/srcs/juloo.keyboard2/KeyValue.java +++ b/srcs/juloo.keyboard2/KeyValue.java @@ -245,7 +245,7 @@ public final class KeyValue implements Comparable<KeyValue> public KeyValue withFlags(int f) { - return new KeyValue(getString(), (_code & KIND_BITS), (_code & VALUE_BITS), f); + return new KeyValue(_payload, (_code & KIND_BITS), (_code & VALUE_BITS), f); } @Override |
