mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-30 22:46:17 +02:00
* Lots of WIP on FSE demo
* WIP emit position from MutliLineEditTextView * ansi.rawWrite() when no iconv/lfs to be processed
This commit is contained in:
parent
60cae7de3d
commit
3d5d21bcb5
17 changed files with 223 additions and 80 deletions
|
@ -305,7 +305,7 @@ ViewController.prototype.setViewOrder = function(order) {
|
|||
};
|
||||
|
||||
ViewController.prototype.redrawAll = function(initialFocusId) {
|
||||
this.client.term.write(ansi.hideCursor());
|
||||
this.client.term.rawWrite(ansi.hideCursor());
|
||||
|
||||
for(var id in this.views) {
|
||||
if(initialFocusId === id) {
|
||||
|
@ -314,7 +314,7 @@ ViewController.prototype.redrawAll = function(initialFocusId) {
|
|||
this.views[id].redraw();
|
||||
}
|
||||
|
||||
this.client.term.write(ansi.showCursor());
|
||||
this.client.term.rawWrite(ansi.showCursor());
|
||||
};
|
||||
|
||||
ViewController.prototype.loadFromPromptConfig = function(options, cb) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue