Use '₹' instead of '₨' in Hindi

₨ is Shift+₹.
This commit is contained in:
Jules Aguillon 2022-11-01 21:44:49 +01:00
parent 67e46e2da3
commit 7edfd81db1
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<keyboard>
<row>
<key key0="ौ" key1="औ" key2="" key3="esc" key4="१"/>
<key key0="ौ" key1="औ" key2="" key3="esc" key4="१"/>
<key key0="ै" key1="ऐ" key2="ऍ" key3="¶" key4="२"/>
<key key0="ा" key1="आ" key2="ॅ" key3="ग़" key4="३"/>
<key key0="ी" key1="ई" key2="ज्ञ" key3="ज़" key4="४"/>

View File

@ -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;
}
}