Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
montenoki committed May 14, 2024
1 parent 803fa6e commit 329d299
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

layer_state_t layer_state_set_user(layer_state_t state) {
// Scroll mode when the highest layer is 2
keyball_set_scroll_mode(get_highest_layer(state) == 2);
keyball_set_scroll_mode(get_highest_layer(state) == 3);
return state;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

layer_state_t layer_state_set_user(layer_state_t state) {
// Scroll mode when the highest layer is 2
keyball_set_scroll_mode(get_highest_layer(state) == 2);
keyball_set_scroll_mode(get_highest_layer(state) == 3);
return state;
}

Expand Down

0 comments on commit 329d299

Please sign in to comment.