From 04441748bf34595a608bb9b9dc9a0a94d574a920 Mon Sep 17 00:00:00 2001 From: mcmlxxix <> Date: Thu, 30 Sep 2010 17:01:55 +0000 Subject: [PATCH] fixed input line coloring during backspace --- exec/load/chateng.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/load/chateng.js b/exec/load/chateng.js index d3a961733b..1d0e0d44ee 100644 --- a/exec/load/chateng.js +++ b/exec/load/chateng.js @@ -655,7 +655,7 @@ function InputLine() } else if(this.buffer.length<=this.width) { this.getxy(); console.left(); - console.putmsg(" ",P_SAVEATR); + console.putmsg(this.bg+" ",P_SAVEATR); this.buffer=this.buffer.substr(0,this.buffer.length-1); } else { this.buffer=this.buffer.substr(0,this.buffer.length-1); -- GitLab