Skip to content

Commit

Permalink
fix SelectRange keyboard navigation when there is a rowheader
Browse files Browse the repository at this point in the history
  • Loading branch information
azmy60 committed Apr 6, 2024
1 parent 5d16d4e commit 227b1b8
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 @@ -457,6 +457,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 227b1b8

Please sign in to comment.