From 2b395ce272418bcb88617483bb2f66d298d45e45 Mon Sep 17 00:00:00 2001
From: echicken <>
Date: Fri, 1 Mar 2013 16:36:39 +0000
Subject: [PATCH] Insert a new line even if the current line is empty.

---
 exec/load/frame.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/exec/load/frame.js b/exec/load/frame.js
index a862658db5..67364e0c64 100644
--- a/exec/load/frame.js
+++ b/exec/load/frame.js
@@ -783,6 +783,8 @@ function Frame(x,y,width,height,attr,parent) {
 				properties.data[y][x] = new Char();
 			}
 			this.refresh();
+		} else {
+			properties.data[y] = [];
 		}
 		return l;
 	}
-- 
GitLab