Skip to content

Commit

Permalink
fix key order bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Alabastard-64 committed Nov 22, 2023
1 parent b9930d6 commit 42591c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quantum/pointing_device/pointing_device_modes.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,18 +556,18 @@ static report_mouse_t process_pointing_mode(pointing_mode_t pointing_mode, repor

// caret mode (uses arrow keys to move cursor)
case PM_CARET:
pointing_tap_codes(KC_DOWN, KC_UP, KC_LEFT, KC_RIGHT);
pointing_tap_codes(KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT);
break;

// history scroll mode (will scroll through undo/redo history)
case PM_HISTORY:
pointing_tap_codes(KC_NO, KC_NO, C(KC_Z), C(KC_Y));
pointing_tap_codes(C(KC_Z), KC_NO, KC_NO, C(KC_Y));
break;

# ifdef EXTRAKEY_ENABLE
// volume scroll mode (adjusts audio volume)
case PM_VOLUME:
pointing_tap_codes(KC_VOLD, KC_VOLU, KC_NO, KC_NO);
pointing_tap_codes(KC_NO, KC_VOLD, KC_VOLU, KC_NO);
break;
# endif

Expand Down

0 comments on commit 42591c6

Please sign in to comment.