From 7edfd81db1465923cd2c245dace40bd1d3280528 Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Tue, 1 Nov 2022 21:44:49 +0100 Subject: Use '₹' instead of '₨' in Hindi ₨ is Shift+₹. --- srcs/juloo.keyboard2/KeyModifier.java | 1 + 1 file changed, 1 insertion(+) (limited to 'srcs') 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; } } -- cgit v1.2.3