do not redraw after changes to scrolled out lines
This commit is contained in:
parent
fd126e06c3
commit
b6890497c8
1 changed files with 4 additions and 1 deletions
|
|
@ -239,7 +239,10 @@ var VirtualRenderer = function(container, theme) {
|
|||
if (this.$changedLines.lastRow < lastRow)
|
||||
this.$changedLines.lastRow = lastRow;
|
||||
}
|
||||
|
||||
|
||||
if (this.$changedLines.firstRow > this.layerConfig.lastRow ||
|
||||
this.$changedLines.lastRow < this.layerConfig.firstRow)
|
||||
return;
|
||||
this.$loop.schedule(this.CHANGE_LINES);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue