Skip to content

Commit

Permalink
fix SelectRange keyboard navigation when there is a rowheader (#4459)
Browse files Browse the repository at this point in the history
  • Loading branch information
azmy60 committed Apr 28, 2024
1 parent 9a7a954 commit 4425327
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/js/modules/SelectRange/SelectRange.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,10 @@ export default class SelectRange extends Module {
break;
}
}

if(this.rowHeader && nextCol === 0) {
nextCol = 1;
}

moved = nextCol !== rangeEdge.col || nextRow !== rangeEdge.row;

Expand Down

0 comments on commit 4425327

Please sign in to comment.