Skip to content

Commit

Permalink
Merge remote-tracking branch 'azmy60/fix/selectrange-navigation' into…
Browse files Browse the repository at this point in the history
… build-6.2.0

fix SelectRange keyboard navigation when there is a rowheader

olifolkerd#4459
  • Loading branch information
azmy60 committed Apr 6, 2024
2 parents 4209dc7 + 227b1b8 commit 8ca9d0f
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 @@ -478,6 +478,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 8ca9d0f

Please sign in to comment.