potential cursor handling during render.

This commit is contained in:
Christopher Jeffrey 2013-07-14 07:02:59 -05:00
parent d0f99be764
commit 155eac8677

View File

@ -653,6 +653,12 @@ Screen.prototype.draw = function(start, end) {
, ly = -1
, o;
// var cx = this.program.x
// , cy = this.program.y
// , ch = this.program.cursorHidden;
//
// if (!ch) this.program.hideCursor();
this.program.saveCursor();
for (y = start; y <= end; y++) {
@ -790,6 +796,9 @@ Screen.prototype.draw = function(start, end) {
}
}
// this.program.cup(cy, cx);
// if (ch) this.program.hideCursor();
this.program.restoreCursor();
};