Merge pull request #616 from LucianBuzzo/crop-lines

Prevent line data from being discarded on resize.
This commit is contained in:
Paris Kasidiaris
2017-03-20 09:52:22 +00:00
committed by GitHub
+1 -7
View File
@@ -1805,14 +1805,8 @@ Terminal.prototype.resize = function(x, y) {
this.lines.get(i).push(ch);
}
}
} else { // (j > x)
i = this.lines.length;
while (i--) {
while (this.lines.get(i).length > x) {
this.lines.get(i).pop();
}
}
}
this.cols = x;
this.setupStops(this.cols);