abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/Config.java
diff options
context:
space:
mode:
authorRaphael2022-04-02 10:42:40 -0400
committerGitHub2022-04-02 16:42:40 +0200
commit2dda39f453854a9e9e139131039d57d7c79e26cb (patch)
treee20f69d7f71bccfe8e700269d481ac480e117525 /srcs/juloo.keyboard2/Config.java
parentfbf8901bdbe717047f0d333c78d173618f7f0f6d (diff)
downloadunexpected-keyboard-2dda39f453854a9e9e139131039d57d7c79e26cb.tar.gz
unexpected-keyboard-2dda39f453854a9e9e139131039d57d7c79e26cb.zip
`Arrows` and `Box` system (#114)
* Add `Arrows` and `Box` accent system
Diffstat (limited to 'srcs/juloo.keyboard2/Config.java')
-rw-r--r--srcs/juloo.keyboard2/Config.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java
index ab2d13a..3c436c3 100644
--- a/srcs/juloo.keyboard2/Config.java
+++ b/srcs/juloo.keyboard2/Config.java
@@ -126,7 +126,8 @@ final class Config
| (prefs.getBoolean("lockable_fn", false) ? KeyValue.FLAG_FN : 0)
| (prefs.getBoolean("lockable_meta", false) ? KeyValue.FLAG_META : 0)
| (prefs.getBoolean("lockable_sup", false) ? KeyValue.FLAG_ACCENT_SUPERSCRIPT : 0)
- | (prefs.getBoolean("lockable_sub", false) ? KeyValue.FLAG_ACCENT_SUBSCRIPT : 0);
+ | (prefs.getBoolean("lockable_sub", false) ? KeyValue.FLAG_ACCENT_SUBSCRIPT : 0)
+ | (prefs.getBoolean("lockable_box", false) ? KeyValue.FLAG_ACCENT_BOX : 0);
characterSize = prefs.getFloat("character_size", characterSize);
accents = Integer.valueOf(prefs.getString("accents", "1"));
theme = getThemeId(res, prefs.getString("theme", ""));