Workaround: popups move into zoom vertically too now on desktop

This commit is contained in:
Pieter Vander Vennet 2021-01-07 20:11:07 +01:00
parent 7dc7cc283d
commit 9a412c6b74
4 changed files with 17 additions and 13 deletions

View file

@ -6,9 +6,11 @@ export default class LazyElement extends UIElement {
private _content: UIElement = undefined;
public Activate: () => void;
private _loadingContent: string;
constructor(content: (() => UIElement)) {
constructor(content: (() => UIElement), loadingContent = "Rendering...") {
super();
this._loadingContent = loadingContent;
this.dumbMode = false;
const self = this;
this.Activate = () => {
@ -21,7 +23,7 @@ export default class LazyElement extends UIElement {
InnerRender(): string {
if (this._content === undefined) {
return "Rendering...";
return this._loadingContent;
}
return this._content.InnerRender();
}