abouttreesummaryrefslogcommitdiff
path: root/srcs
diff options
context:
space:
mode:
authorJules Aguillon2022-05-29 17:31:12 +0200
committerJules Aguillon2022-05-29 17:31:12 +0200
commit815025aaa99851840d4bc8b2a0dfff4caa6a44f3 (patch)
treeaa2aec74f88ad26302071882c9838ee0cb6c7116 /srcs
parentd9f2fdf8bf9c300573bea98e074dd7c68589e9fd (diff)
downloadunexpected-keyboard-815025aaa99851840d4bc8b2a0dfff4caa6a44f3.tar.gz
unexpected-keyboard-815025aaa99851840d4bc8b2a0dfff4caa6a44f3.zip
Add layout: QWERTY (Hungarian)
Diffstat (limited to 'srcs')
-rw-r--r--srcs/juloo.keyboard2/Config.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java
index 199fe35..50d8a11 100644
--- a/srcs/juloo.keyboard2/Config.java
+++ b/srcs/juloo.keyboard2/Config.java
@@ -235,16 +235,17 @@ final class Config
case "azerty": return R.xml.azerty;
case "bgph1": return R.xml.local_bgph1;
case "dvorak": return R.xml.dvorak;
+ case "neo2": return R.xml.neo2;
case "qwerty_es": return R.xml.qwerty_es;
+ case "qwerty_hu": return R.xml.qwerty_hu;
case "qwerty_ko": return R.xml.qwerty_ko;
case "qwerty_lv": return R.xml.qwerty_lv;
case "qwerty_pt": return R.xml.qwerty_pt;
case "qwerty": return R.xml.qwerty;
case "qwerty_sv_se": return R.xml.qwerty_sv_se;
- case "qwertz": return R.xml.qwertz;
case "qwertz_hu": return R.xml.qwertz_hu;
+ case "qwertz": return R.xml.qwertz;
case "ru_jcuken": return R.xml.local_ru_jcuken;
- case "neo2": return R.xml.neo2;
default: return R.xml.qwerty; // The config might store an invalid layout, don't crash
}
}