Skip to content

Commit

Permalink
[Achordion] Maybe fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna committed Jan 17, 2024
1 parent 90d925a commit c12531c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions users/drashna/keyrecords/achordion.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ static uint8_t achordion_state = STATE_RELEASED;
// Calls `process_record()` with state set to RECURSING.
static void recursively_process_record(keyrecord_t* record, uint8_t state) {
achordion_state = STATE_RECURSING;
#ifdef POINTING_DEVICE_AUTO_MOUSE_ENABLE
#if defined(POINTING_DEVICE_AUTO_MOUSE_ENABLE) && defined(ACHORDION_AUTO_MOUSE_FIX)
int8_t mouse_key_tracker = get_auto_mouse_key_tracker();
#endif
process_record(record);
#ifdef POINTING_DEVICE_AUTO_MOUSE_ENABLE
#if defined(POINTING_DEVICE_AUTO_MOUSE_ENABLE) && defined(ACHORDION_AUTO_MOUSE_FIX)
set_auto_mouse_key_tracker(mouse_key_tracker);
#endif
achordion_state = state;
Expand Down

0 comments on commit c12531c

Please sign in to comment.