Skip to content

Commit c130402

Browse files
ibdafnaivanov
andcommitted
Fix reintroduced column resize rendering bug
Co-authored-by: Paul Ivanov <[email protected]> Signed-off-by: Itay Dafna <[email protected]>
1 parent e4a9a1f commit c130402

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/datagrid/src/datagrid.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3292,7 +3292,7 @@ class DataGrid extends Widget {
32923292
let x = hw + this._columnSections.offsetOf(c);
32933293
this.paintContent(x, 0, vw - x, vh);
32943294
} else if (delta < 0) {
3295-
this.paintContent(0, vh + delta, vw, -delta);
3295+
this.paintContent(0, 0, vw, vh);
32963296
}
32973297

32983298
// Paint the overlay.

0 commit comments

Comments
 (0)