abouttreesummaryrefslogcommitdiff
diff options
context:
space:
mode:
-rw-r--r--srcs/juloo.keyboard2/KeyModifier.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/KeyModifier.java b/srcs/juloo.keyboard2/KeyModifier.java
index 3376961..325594c 100644
--- a/srcs/juloo.keyboard2/KeyModifier.java
+++ b/srcs/juloo.keyboard2/KeyModifier.java
@@ -354,6 +354,10 @@ class KeyModifier
case '─': return '═';
case '│': return '║';
case 'ß': return 'ẞ';
+ /* In Turkish, upper case of 'iı' is 'İI' but Java's toUpperCase will
+ return 'II'. To make 'İ' accessible, make it the shift of 'ı'. This
+ has the inconvenient of swapping i and ı on the keyboard. */
+ case 'ı': return 'İ';
default: return c;
}
}