diff options
author | Flugschwein <flugschwein@gmx.at> | 2019-02-02 23:32:26 +0100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-02-04 15:07:16 -0800 |
commit | e9c3e041460fa82addc67c194b9a881b3ee967e6 (patch) | |
tree | bffeddabdb934754287bac9552e67b518480081b /quantum | |
parent | e14df8678dd521598b026ce7bf2e7e2cebce35e3 (diff) | |
download | firmware-e9c3e041460fa82addc67c194b9a881b3ee967e6.tar.gz firmware-e9c3e041460fa82addc67c194b9a881b3ee967e6.tar.bz2 firmware-e9c3e041460fa82addc67c194b9a881b3ee967e6.zip |
Fix QWERTZ <> QWERTY issue in sendstring_german.h
Small mistake that caused sendstring commands to exchange y with z.
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/keymap_extras/sendstring_german.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/keymap_extras/sendstring_german.h b/quantum/keymap_extras/sendstring_german.h index 1eaafee31..f20fab77d 100644 --- a/quantum/keymap_extras/sendstring_german.h +++ b/quantum/keymap_extras/sendstring_german.h @@ -67,7 +67,7 @@ const uint8_t ascii_to_keycode_lut[0x80] PROGMEM = { /* P Q R S T U V W */ KC_P, KC_Q, KC_R, KC_S, KC_T, KC_U, KC_V, KC_W, /* X Y Z [ \ ] ^ _ */ - KC_X, KC_Y, KC_Z, KC_LBRC, KC_BSLS, KC_RBRC, DE_CIRC, DE_MINS, + KC_X, DE_Y, DE_Z, KC_LBRC, KC_BSLS, KC_RBRC, DE_CIRC, DE_MINS, /* ` a b c d e f g */ DE_ACUT, KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G, /* h i j k l m n o */ @@ -75,7 +75,7 @@ const uint8_t ascii_to_keycode_lut[0x80] PROGMEM = { /* p q r s t u v w */ KC_P, KC_Q, KC_R, KC_S, KC_T, KC_U, KC_V, KC_W, /* x y z { | } ~ DELETE */ - KC_X, KC_Y, KC_Z, KC_LBRC, KC_BSLS, KC_RBRC, KC_GRV, KC_DEL + KC_X, DE_Y, DE_Z, KC_LBRC, KC_BSLS, KC_RBRC, KC_GRV, KC_DEL }; #endif |