diff options
| author | Jules Aguillon | 2022-11-01 21:44:49 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2022-11-01 21:44:49 +0100 |
| commit | 7edfd81db1465923cd2c245dace40bd1d3280528 (patch) | |
| tree | e8b59d721be51a899753b039010d70b8dfb26d03 /srcs/juloo.keyboard2 | |
| parent | 67e46e2da3c0a9fd6d79edad489eaa3692714bf5 (diff) | |
| download | unexpected-keyboard-7edfd81db1465923cd2c245dace40bd1d3280528.tar.gz unexpected-keyboard-7edfd81db1465923cd2c245dace40bd1d3280528.zip | |
Use '₹' instead of '₨' in Hindi
₨ is Shift+₹.
Diffstat (limited to 'srcs/juloo.keyboard2')
| -rw-r--r-- | srcs/juloo.keyboard2/KeyModifier.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/KeyModifier.java b/srcs/juloo.keyboard2/KeyModifier.java index fc98b93..2bb4e08 100644 --- a/srcs/juloo.keyboard2/KeyModifier.java +++ b/srcs/juloo.keyboard2/KeyModifier.java @@ -359,6 +359,7 @@ class KeyModifier return 'II'. To make 'İ' accessible, make it the shift of 'ı'. This has the inconvenient of swapping i and ı on the keyboard. */ case 'ı': return 'İ'; + case '₹': return '₨'; default: return c; } } |
