Fix US_RDQU keycode (#13464)
`US_RDQU` and `US_LDQU` were aliased to the same keycode. `US_RDQU` should use the right bracket.
This commit is contained in:
parent
a72b562141
commit
9472c4b8cb
2 changed files with 2 additions and 2 deletions
|
@ -214,7 +214,7 @@
|
||||||
#define US_DIV S(ALGR(US_EQL)) // ÷
|
#define US_DIV S(ALGR(US_EQL)) // ÷
|
||||||
// Row 2
|
// Row 2
|
||||||
#define US_LDQU S(ALGR(US_LBRC)) // “
|
#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)) // ¦
|
#define US_BRKP S(ALGR(US_BSLS)) // ¦
|
||||||
// Row 3
|
// Row 3
|
||||||
#define US_SECT S(ALGR(US_S)) // §
|
#define US_SECT S(ALGR(US_S)) // §
|
||||||
|
|
|
@ -212,7 +212,7 @@
|
||||||
#define US_DIV S(ALGR(US_EQL)) // ÷
|
#define US_DIV S(ALGR(US_EQL)) // ÷
|
||||||
// Row 2
|
// Row 2
|
||||||
#define US_LDQU S(ALGR(US_LBRC)) // “
|
#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)) // ¦
|
#define US_BRKP S(ALGR(US_BSLS)) // ¦
|
||||||
// Row 3
|
// Row 3
|
||||||
#define US_SECT S(ALGR(US_S)) // §
|
#define US_SECT S(ALGR(US_S)) // §
|
||||||
|
|
Loading…
Reference in a new issue