summaryrefslogtreecommitdiff
path: root/keyboards/kinesis/keymaps/dvorak/keymap.c
diff options
context:
space:
mode:
authorMichael Stapelberg <stapelberg@users.noreply.github.com>2021-04-03 07:12:24 +0200
committerGitHub <noreply@github.com>2021-04-02 22:12:24 -0700
commita7920acff5667d24f14eff3cc21eeeaae58d3711 (patch)
tree9ef3748603455a6649f0d02a472c4f7ecb63a70e /keyboards/kinesis/keymaps/dvorak/keymap.c
parent79a87a9c2bd808a6e7a5ef5250739850c4105c30 (diff)
keymaps: fix kinesis default keymap progrm/reset keycode (#12429)
The right-most top-most key on the Kinesis Advantage keyboard is labeled “Progrm” and was meant to enter the Teensy bootloader as per the comment. However, the keycode was set to KC_1, which just produces a “1”. It should be RESET instead. This commit fixes KC_1 to RESET in all files where the fix is needed. The other files have already been fixed independently.
Diffstat (limited to 'keyboards/kinesis/keymaps/dvorak/keymap.c')
-rw-r--r--keyboards/kinesis/keymaps/dvorak/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/kinesis/keymaps/dvorak/keymap.c b/keyboards/kinesis/keymaps/dvorak/keymap.c
index ff67eb9fc7..3c532628ef 100644
--- a/keyboards/kinesis/keymaps/dvorak/keymap.c
+++ b/keyboards/kinesis/keymaps/dvorak/keymap.c
@@ -17,7 +17,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
KC_HOME,
KC_BSPC, KC_DEL, KC_END,
// right hand
- KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, KC_FN0, KC_1,
+ KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, KC_FN0, RESET,
KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH,
KC_D, KC_H, KC_T, KC_N, KC_S, KC_BSLS,