Prevent line data from being discarded on resize.

This commit is contained in:
Lucian Buzzo
2017-03-19 08:26:37 +00:00
parent 0723dac596
commit cb77b9dc1a
+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);