diff options
| author | Jules Aguillon | 2021-12-11 17:05:49 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2021-12-11 17:05:49 +0100 |
| commit | 573c13fb825f41a926dca838ef5a396ccce6a3eb (patch) | |
| tree | 66e0c9f4b1615b342eada3924e467fd50780fb02 /srcs/juloo.keyboard2/Config.java | |
| parent | 58e37b484c8d4cf8099372e6f307557d0ed2458e (diff) | |
| download | unexpected-keyboard-573c13fb825f41a926dca838ef5a396ccce6a3eb.tar.gz unexpected-keyboard-573c13fb825f41a926dca838ef5a396ccce6a3eb.zip | |
Add Swedish
First add the 'ring' accent.
The swedish language uses the qwerty layout and three accents (aigu,
trema, ring)
Diffstat (limited to 'srcs/juloo.keyboard2/Config.java')
| -rw-r--r-- | srcs/juloo.keyboard2/Config.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java index 67722c5..8c6a46a 100644 --- a/srcs/juloo.keyboard2/Config.java +++ b/srcs/juloo.keyboard2/Config.java @@ -118,6 +118,7 @@ class Config case "tilde": return KeyValue.FLAG_ACCENT4; case "cedille": return KeyValue.FLAG_ACCENT5; case "trema": return KeyValue.FLAG_ACCENT6; + case "ring": return KeyValue.FLAG_ACCENT_RING; default: throw new RuntimeException(name); } } |
