Skip to content

Commit

Permalink
Fix bug in hand detection on non-splits
Browse files Browse the repository at this point in the history
  • Loading branch information
manna-harbour committed Oct 23, 2020
1 parent 2c6666d commit 3cbda2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmk_core/common/action.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ static bool bilateral_combinations_left(keypos_t key) {
return key.row < MATRIX_ROWS / 2;
# else
if (MATRIX_COLS > MATRIX_ROWS) {
return key.row < MATRIX_COLS / 2;
return key.col < MATRIX_COLS / 2;
} else {
return key.row < MATRIX_ROWS / 2;
}
Expand Down

0 comments on commit 3cbda2a

Please sign in to comment.