Further improve the remote font intergation: Better preload strategy, better loading and UI interation.
This commit is contained in:
@@ -100,10 +100,6 @@ class Control {
|
||||
this.resizer(dim.rows, dim.cols);
|
||||
}
|
||||
|
||||
ui() {
|
||||
return "Console";
|
||||
}
|
||||
|
||||
enabled() {
|
||||
this.enable = true;
|
||||
}
|
||||
@@ -168,6 +164,10 @@ export class SSH {
|
||||
return "SSH";
|
||||
}
|
||||
|
||||
ui() {
|
||||
return "Console";
|
||||
}
|
||||
|
||||
build(data) {
|
||||
return new Control(data, this.color);
|
||||
}
|
||||
|
||||
@@ -428,10 +428,6 @@ class Control {
|
||||
this.parser.requestWindowResize();
|
||||
}
|
||||
|
||||
ui() {
|
||||
return "Console";
|
||||
}
|
||||
|
||||
enabled() {
|
||||
this.enable = true;
|
||||
}
|
||||
@@ -527,6 +523,10 @@ export class Telnet {
|
||||
return "Telnet";
|
||||
}
|
||||
|
||||
ui() {
|
||||
return "Console";
|
||||
}
|
||||
|
||||
build(data) {
|
||||
return new Control(data, this.color);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user