Browse Source

[Keymap] Fix Georgi's RZ key in NKRO fake-steno mode (#6701)

It was sending a comma keypress, while I believe that the targeted
stenography software (at least on systems that generally use
US-International keyboard layout) expects a single-quote/apostrophe key.
pull/6759/head
Fedde Schaeffer 4 years ago
committed by Drashna Jaelre
parent
commit
d13e0b5cfc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      keyboards/georgi/sten.c

+ 1
- 1
keyboards/georgi/sten.c View File

@ -253,7 +253,7 @@ uint32_t processFakeSteno(bool lookup) {
P( RB, SEND(KC_K););
P( RG, SEND(KC_L););
P( RS, SEND(KC_SCLN););
P( RZ, SEND(KC_COMM););
P( RZ, SEND(KC_QUOT););
P( LNO, SEND(KC_1););
P( RNO, SEND(KC_1););


Loading…
Cancel
Save