* Fix backspace in edit views

* Some notes
This commit is contained in:
Bryan Ashby 2015-05-27 22:53:21 -06:00
parent e46105984c
commit 5a6b283923
2 changed files with 8 additions and 45 deletions

View file

@ -20,7 +20,7 @@ function EditTextView(options) {
TextView.call(this, options);
this.cursorPos = { x : 0 };
this.cursorPos = { row : 0, col : 0 };
this.clientBackspace = function() {
var fillCharSGR = this.getStyleSGR(1) || this.getSGR();