From c6b667623a49d8dd2f1b74cd0ac0e5531d5d91a8 Mon Sep 17 00:00:00 2001 From: Takashi Shibusawa Date: Sat, 21 Mar 2020 15:22:08 +0900 Subject: [Keyboard] Palette1202 fix encoder rotate direction (#8489) * revised hardware availability - URL * fixed encoder rotate direction (reversed) --- keyboards/palette1202/keymaps/default/keymap.c | 40 +++++++++++++------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'keyboards/palette1202/keymaps/default/keymap.c') diff --git a/keyboards/palette1202/keymaps/default/keymap.c b/keyboards/palette1202/keymaps/default/keymap.c index 9c7bc74563..d7bd120ed2 100644 --- a/keyboards/palette1202/keymaps/default/keymap.c +++ b/keyboards/palette1202/keymaps/default/keymap.c @@ -116,55 +116,55 @@ void encoder_update_user(uint8_t index, bool clockwise) { if (currentLayer % 2 == 0) { // default layer // Zoom - tap_code16(!clockwise ? G(KC_EQL) : G(KC_MINS)); + tap_code16(!clockwise ? G(KC_MINS) : G(KC_EQL)); } else { // Fn Layer // rotate canvas - tap_code(!clockwise ? KC_QUOT : KC_MINS); + tap_code(!clockwise ? KC_MINS : KC_QUOT); } break; case MAC_PS_1: if (currentLayer % 2 == 0) { // default layer // Zoom - tap_code16(!clockwise ? G(KC_EQL) : G(KC_MINS)); + tap_code16(!clockwise ? G(KC_MINS) : G(KC_EQL)); } else { // Fn Layer // undo / redo - tap_code16(!clockwise ? S(G(KC_Z)) : G(KC_Z)); + tap_code16(!clockwise ? G(KC_Z) : S(G(KC_Z))); } break; case WIN_CS_1: if (currentLayer % 2 == 0) { // default layer // Zoom - tap_code16(!clockwise ? C(KC_EQL) : C(KC_MINS)); + tap_code16(!clockwise ? C(KC_MINS) : C(KC_EQL)); } else { // Fn Layer // rotate canvas - tap_code(!clockwise ? KC_QUOT : KC_MINS); + tap_code(!clockwise ? KC_MINS : KC_QUOT); } break; case WIN_PS_1: if (currentLayer % 2 == 0) { // default layer // Zoom - tap_code16(!clockwise ? C(KC_SCLN) : C(KC_MINS)); + tap_code16(!clockwise ? C(KC_MINS) : C(KC_SCLN)); } else { // Fn Layer // undo / redo - tap_code16(!clockwise ? C(S(KC_Z)) : C(KC_Z)); + tap_code16(!clockwise ? C(KC_Z) : C(S(KC_Z))); } break; case IOS_CS_1: if (currentLayer % 2 == 0) { // default layer // Zoom - tap_code16(!clockwise ? G(KC_SCLN) : G(KC_MINS)); + tap_code16(!clockwise ? G(KC_MINS) : G(KC_SCLN)); } else { // Fn Layer // rotate canvas - tap_code(!clockwise ? KC_EQL : KC_MINS); + tap_code(!clockwise ? KC_MINS : KC_EQL); } break; default: @@ -176,55 +176,55 @@ void encoder_update_user(uint8_t index, bool clockwise) { if (currentLayer % 2 == 0) { // default layer // size of brush - tap_code(!clockwise ? KC_RBRC : KC_LBRC); + tap_code(!clockwise ? KC_LBRC : KC_RBRC); } else { // Fn Layer // opacity of brush - tap_code16(!clockwise ? G(KC_RBRC) : G(KC_LBRC)); + tap_code16(!clockwise ? G(KC_LBRC) : G(KC_RBRC)); } break; case MAC_PS_1: if (currentLayer % 2 == 0) { // default layer // size of brush - tap_code(!clockwise ? KC_RBRC : KC_LBRC); + tap_code(!clockwise ? KC_LBRC : KC_RBRC); } else { // Fn Layer // opacity of brush - tap_code16(!clockwise ? KC_RCBR : KC_LCBR); + tap_code16(!clockwise ? KC_LCBR : KC_RCBR); } break; case WIN_CS_1: if (currentLayer % 2 == 0) { // default layer // rotate canvas - tap_code(!clockwise ? KC_RBRC : KC_LBRC); + tap_code(!clockwise ? KC_LBRC : KC_RBRC); } else { // Fn Layer // opacity of brush - tap_code16(!clockwise ? C(KC_RBRC) : C(KC_LBRC)); + tap_code16(!clockwise ? C(KC_LBRC) : C(KC_RBRC)); } break; case WIN_PS_1: if (currentLayer % 2 == 0) { // default layer // rotate canvas - tap_code(!clockwise ? KC_RBRC : KC_LBRC); + tap_code(!clockwise ? KC_LBRC : KC_RBRC); } else { // Fn Layer // opacity of brush - tap_code16(!clockwise ? KC_RCBR : KC_LCBR); + tap_code16(!clockwise ? KC_LCBR : KC_RCBR); } break; case IOS_CS_1: if (currentLayer % 2 == 0) { // default layer // size of brush - tap_code(!clockwise ? KC_BSLS : KC_RBRC); + tap_code(!clockwise ? KC_RBRC : KC_BSLS); } else { // Fn Layer // opacity of brush - tap_code16(!clockwise ? G(KC_BSLS) : G(KC_RBRC)); + tap_code16(!clockwise ? G(KC_RBRC) : G(KC_BSLS)); } break; default: -- cgit v1.2.3