diff options
Diffstat (limited to 'js/lex.js')
| -rw-r--r-- | js/lex.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,14 +35,14 @@ Lex.prototype.irc = function(){ } } Lex.prototype.clone = function (lex){ - if (lex.isClear()) return + if (lex.opacity == 0) return this.fg = lex.fg this.bg = lex.bg this.char = lex.char this.build() } Lex.prototype.erase = function (lex){ - if (lex.isClear()) return + if (lex.opacity == 0) return this.fg = colors.white this.bg = colors.black this.char = " " |
