diff --git a/core/text_view.js b/core/text_view.js index e51309da..f1b3ee7e 100644 --- a/core/text_view.js +++ b/core/text_view.js @@ -151,7 +151,7 @@ TextView.prototype.redraw = function() { // and there is no actual text (e.g. save SGR's and processing) // if(!this.hasDrawnOnce) { - if(!this.text) { + if(_.isUndefined(this.text)) { return; } }