aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/georgi
diff options
context:
space:
mode:
authorFedde Schaeffer <fedde.schaeffer@gmail.com>2019-09-15 04:55:23 +0200
committerDrashna Jaelre <drashna@live.com>2019-09-14 19:55:23 -0700
commitd13e0b5cfc354c60da32d1c22c6930c75945937f (patch)
tree2d62ec6543d51b6030526b56876ceb30cc893bf7 /keyboards/georgi
parenta4581e6620677e16e506e459de5a53407be4a04f (diff)
downloadfirmware-d13e0b5cfc354c60da32d1c22c6930c75945937f.tar.gz
firmware-d13e0b5cfc354c60da32d1c22c6930c75945937f.tar.bz2
firmware-d13e0b5cfc354c60da32d1c22c6930c75945937f.zip
[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.
Diffstat (limited to 'keyboards/georgi')
-rw-r--r--keyboards/georgi/sten.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/georgi/sten.c b/keyboards/georgi/sten.c
index 197abaf92..c7469b639 100644
--- a/keyboards/georgi/sten.c
+++ b/keyboards/georgi/sten.c
@@ -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););