We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19567da commit 4391539Copy full SHA for 4391539
backend.py
@@ -1745,7 +1745,7 @@ def key_down(scan, eascii=''):
1745
and not ignore_caps and len(eascii) == 1):
1746
if eascii >= 'a' and eascii <= 'z':
1747
eascii = chr(ord(eascii)-32)
1748
- elif eascii >= 'A' and eascii <= 'z':
+ elif eascii >= 'A' and eascii <= 'Z':
1749
eascii = chr(ord(eascii)+32)
1750
insert_chars(eascii)
1751
0 commit comments