Skip to content

Commit cf8644b

Browse files
authored
Merge pull request #22 from Neradoc/fix-braces-it
Fix curly braces in italian layout
2 parents 5ef319b + 28b3310 commit cf8644b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libraries/layouts/keyboard_layout_win_it.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,13 @@ class KeyboardLayout(KeyboardLayoutBase):
136136
b'\x1b' # 'x'
137137
b'\x1c' # 'y'
138138
b'\x1d' # 'z'
139-
b'\x00'
139+
b'\xaf' # '{'
140140
b'\xb5' # '|'
141-
b'\x00'
141+
b'\xb0' # '}'
142142
b'\x00'
143143
b'\x00'
144144
)
145-
NEED_ALTGR = '#@[]€'
145+
NEED_ALTGR = '#@[]€{}'
146146
HIGHER_ASCII = {
147147
0xa3: 0xa0, # '£'
148148
0x20ac: 0x22, # '€'

0 commit comments

Comments
 (0)