Skip to content

Commit 83c76f3

Browse files
committed
Fix french circumflex & umlaut accents
Replace circumflex accent obtained by modifier with the keyboard key available. This allows to be able to generate letters with umlaut using the modifier shift + '^'.
1 parent a561178 commit 83c76f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/KeyboardLayout_fr_FR.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ extern const uint8_t KeyboardLayout_fr_FR[128] PROGMEM =
4545
0x20|ALT_GR, // #
4646
0x30, // $
4747
0x34|SHIFT, // %
48-
0x1E, // &
48+
0x1e, // &
4949
0x21, // '
5050
0x22, // (
5151
0x2d, // )
@@ -101,7 +101,7 @@ extern const uint8_t KeyboardLayout_fr_FR[128] PROGMEM =
101101
0x22|ALT_GR, // [
102102
0x25|ALT_GR, // bslash
103103
0x2d|ALT_GR, // ]
104-
0x26|ALT_GR, // ^
104+
0x2f, // ^
105105
0x25, // _
106106
0x24|ALT_GR, // `
107107
0x14, // a

0 commit comments

Comments
 (0)