Skip to content

Commit c5b8076

Browse files
committed
Fix fr_FR special characters
1 parent 1a85f4d commit c5b8076

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ui/src/keyboardLayouts/fr_FR.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const keyHat = { key: "BracketLeft" } // accent circonflexe (accent hat), mark ^
55

66
export const chars = {
77
A: { key: "KeyQ", shift: true },
8-
"Ä": { key: "KeyA", shift: true, accentKey: keyTrema },
9-
"Â": { key: "KeyA", shift: true, accentKey: keyHat },
8+
"Ä": { key: "KeyQ", shift: true, accentKey: keyTrema },
9+
"Â": { key: "KeyQ", shift: true, accentKey: keyHat },
1010
B: { key: "KeyB", shift: true },
1111
C: { key: "KeyC", shift: true },
1212
D: { key: "KeyD", shift: true },
@@ -41,8 +41,8 @@ export const chars = {
4141
Y: { key: "KeyY", shift: true },
4242
Z: { key: "KeyW", shift: true },
4343
a: { key: "KeyQ" },
44-
"ä": { key: "KeyA", accentKey: keyTrema },
45-
"â": { key: "KeyA", accentKey: keyHat },
44+
"ä": { key: "KeyQ", accentKey: keyTrema },
45+
"â": { key: "KeyQ", accentKey: keyHat },
4646
b: { key: "KeyB" },
4747
c: { key: "KeyC" },
4848
d: { key: "KeyD" },

0 commit comments

Comments
 (0)