do not redraw after changes to scrolled out lines

This commit is contained in:
nightwing 2012-11-18 01:47:07 +04:00
commit b6890497c8

View file

@ -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);
};