From 110b36a03abb461c7edb180789cea9d59b645c0c Mon Sep 17 00:00:00 2001 From: Carlos Alves Date: Tue, 17 Nov 2020 22:16:19 -0300 Subject: [PATCH] Missing to set property for the new line It didn't crash or bug, but to be sure it won't. --- src/Screen.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Screen.cpp b/src/Screen.cpp index d902ddab..9f497b8b 100644 --- a/src/Screen.cpp +++ b/src/Screen.cpp @@ -464,6 +464,7 @@ void Screen::resizeImage(int new_lines, int new_columns) _history->setCellsAt(currentPos, curr_line, new_columns); _history->setLineAt(currentPos, true); _history->insertCells(currentPos + 1, curr_line + new_columns, curr_linelen - new_columns); + _history->setLineAt(currentPos + 1, false); } currentPos++; }