]> git.proxmox.com Git - mirror_xterm.js.git/commitdiff
Add another null check on children[y]
authorDaniel Imms <daimms@microsoft.com>
Thu, 12 Jan 2017 19:23:17 +0000 (11:23 -0800)
committerDaniel Imms <daimms@microsoft.com>
Thu, 12 Jan 2017 19:23:17 +0000 (11:23 -0800)
src/xterm.js

index a46d0152c682361769490f17127a0a0c5773abe2..b01421b1f79b84a1c31342e48ca42747fbfc94f8 100644 (file)
@@ -1139,7 +1139,7 @@ Terminal.prototype.refresh = function(start, end) {
     row = y + this.ydisp;
 
     line = this.lines.get(row);
-    if (!line) {
+    if (!line || !this.children[y]) {
       // Continue if the line is not available, this means a resize is currently in progress
       continue;
     }