Skip to content

Commit 4a72f64

Browse files
committed
grid.ScrollManager: prevent virtual diagonal scrolling when dragging headers #6523
1 parent f3b70d1 commit 4a72f64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/grid/ScrollManager.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class ScrollManager extends Base {
9696

9797
me.gridContainer.headerToolbar.scrollLeft = scrollLeft;
9898

99-
if (touches) {
99+
if (touches && !me.gridContainer.headerToolbar.cls.includes('neo-is-dragging')) {
100100
if (me.touchMoveOwner !== 'view') {
101101
me.touchMoveOwner = 'container'
102102
}

0 commit comments

Comments
 (0)