Browse Source

Fix US_RDQU keycode (#13464)

`US_RDQU` and `US_LDQU` were aliased to the same keycode. `US_RDQU`
should use the right bracket.
pull/14135/head 0.13.38
Olli Helenius 2 years ago
committed by GitHub
parent
commit
9472c4b8cb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      quantum/keymap_extras/keymap_us_extended.h
  2. +1
    -1
      quantum/keymap_extras/keymap_us_international_linux.h

+ 1
- 1
quantum/keymap_extras/keymap_us_extended.h View File

@ -214,7 +214,7 @@
#define US_DIV S(ALGR(US_EQL)) // ÷
// Row 2
#define US_LDQU S(ALGR(US_LBRC)) //
#define US_RDQU S(ALGR(US_LBRC)) //
#define US_RDQU S(ALGR(US_RBRC)) //
#define US_BRKP S(ALGR(US_BSLS)) // ¦
// Row 3
#define US_SECT S(ALGR(US_S)) // §


+ 1
- 1
quantum/keymap_extras/keymap_us_international_linux.h View File

@ -212,7 +212,7 @@
#define US_DIV S(ALGR(US_EQL)) // ÷
// Row 2
#define US_LDQU S(ALGR(US_LBRC)) //
#define US_RDQU S(ALGR(US_LBRC)) //
#define US_RDQU S(ALGR(US_RBRC)) //
#define US_BRKP S(ALGR(US_BSLS)) // ¦
// Row 3
#define US_SECT S(ALGR(US_S)) // §


Loading…
Cancel
Save