Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b64c5c8

Browse files
committed
fix for glitch sometimes occurring when manually stopping a fast scrollwheel scroll in a table with text wrapping - thanks Ricky for the report
1 parent 10f99a2 commit b64c5c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/traces/table/plot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ function conditionalPanelRerender(gd, tableControlView, cellsColumnBlock, pages,
705705
// setTimeout might lag rendering but yields a smoother scroll, because fast scrolling makes
706706
// some repaints invisible ie. wasteful (DOM work blocks the main thread)
707707
var toRerender = cellsColumnBlock.filter(function(d, i) {return i === revolverIndex && pages[i] !== prevPages[i];});
708-
renderColumnCellTree(gd, tableControlView, toRerender, toRerender);
708+
renderColumnCellTree(gd, tableControlView, toRerender, cellsColumnBlock);
709709
prevPages[revolverIndex] = pages[revolverIndex];
710710
});
711711
}

0 commit comments

Comments
 (0)