Skip to content

Commit

Permalink
Revert "[Bug] Fix Swap Hands bug introduced by OSH (qmk#9968)"
Browse files Browse the repository at this point in the history
This reverts commit 1d30810.
  • Loading branch information
fdawans authored Aug 11, 2020
1 parent 9dd0f32 commit 9830c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmk_core/common/action_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static uint16_t oneshot_layer_time = 0;
inline bool has_oneshot_layer_timed_out() { return TIMER_DIFF_16(timer_read(), oneshot_layer_time) >= ONESHOT_TIMEOUT && !(get_oneshot_layer_state() & ONESHOT_TOGGLED); }
# ifdef SWAP_HANDS_ENABLE
static uint16_t oneshot_swaphands_time = 0;
inline bool has_oneshot_swaphands_timed_out() { return TIMER_DIFF_16(timer_read(), oneshot_swaphands_time) >= ONESHOT_TIMEOUT && (swap_hands_oneshot == SHO_ACTIVE); }
inline bool has_oneshot_swaphands_timed_out() { return TIMER_DIFF_16(timer_read(), oneshot_swaphands_time) >= ONESHOT_TIMEOUT && !(swap_hands_oneshot >= SHO_PRESSED); }
# endif
# endif

Expand Down

0 comments on commit 9830c1a

Please sign in to comment.