Skip to content

Commit 6ffc897

Browse files
author
Dana Greenberg
committed
skip redraw if column original position = new position
1 parent 263e867 commit 6ffc897

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/features/move-columns/js/column-movable.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,9 @@
168168
});
169169
},
170170
redrawColumnAtPosition: function (grid, originalPosition, newPosition) {
171+
if (originalPosition === newPosition) {
172+
return;
173+
}
171174

172175
var columns = grid.columns;
173176

0 commit comments

Comments
 (0)