* Mark current selection rows as dirty for redraw
()
| 659 | * Mark current selection rows as dirty for redraw |
| 660 | */ |
| 661 | private markCurrentSelectionDirty(): void { |
| 662 | const coords = this.normalizeSelection(); |
| 663 | if (coords) { |
| 664 | for (let row = coords.startRow; row <= coords.endRow; row++) { |
| 665 | this.dirtySelectionRows.add(row); |
| 666 | } |
| 667 | } |
| 668 | } |
| 669 | |
| 670 | /** |
| 671 | * Update auto-scroll based on mouse Y position within canvas |
no test coverage detected