mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2025-02-23 21:11:26 +01:00
Move inverted punctuation to the tilde modifier
This commit is contained in:
parent
8fb89c5c71
commit
41dfa844f1
@ -76,7 +76,12 @@ class KeyModifier
|
|||||||
default: return (char)KeyCharacterMap.getDeadChar('\u02C6', c);
|
default: return (char)KeyCharacterMap.getDeadChar('\u02C6', c);
|
||||||
}
|
}
|
||||||
case KeyValue.FLAG_ACCENT4:
|
case KeyValue.FLAG_ACCENT4:
|
||||||
return (char)KeyCharacterMap.getDeadChar('\u02DC', c);
|
switch (c)
|
||||||
|
{
|
||||||
|
case '?': return '¿';
|
||||||
|
case '!': return '¡';
|
||||||
|
default: return (char)KeyCharacterMap.getDeadChar('\u02DC', c);
|
||||||
|
}
|
||||||
case KeyValue.FLAG_ACCENT5:
|
case KeyValue.FLAG_ACCENT5:
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
@ -91,8 +96,6 @@ class KeyModifier
|
|||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
case '-': return '÷';
|
case '-': return '÷';
|
||||||
case '?': return '¿';
|
|
||||||
case '!': return '¡';
|
|
||||||
default: return (char)KeyCharacterMap.getDeadChar('\u00A8', c);
|
default: return (char)KeyCharacterMap.getDeadChar('\u00A8', c);
|
||||||
}
|
}
|
||||||
case KeyValue.FLAG_ACCENT_SUPERSCRIPT:
|
case KeyValue.FLAG_ACCENT_SUPERSCRIPT:
|
||||||
|
Loading…
Reference in New Issue
Block a user