mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Added more finalize_construction calls where necessary.
This commit is contained in:
parent
3a95e8a974
commit
9906ea88a9
@ -22,5 +22,7 @@ export class HelpView extends ResizableWidget {
|
||||
}),
|
||||
),
|
||||
);
|
||||
|
||||
this.finalize_construction(HelpView.prototype);
|
||||
}
|
||||
}
|
||||
|
@ -97,6 +97,8 @@ export class MethodsForEpisodeView extends ResizableWidget {
|
||||
{ call_now: true },
|
||||
),
|
||||
);
|
||||
|
||||
this.finalize_construction(MethodsForEpisodeView.prototype);
|
||||
}
|
||||
|
||||
dispose(): void {
|
||||
|
@ -30,5 +30,7 @@ export class MethodsView extends TabContainer {
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
this.finalize_construction(MethodsView.prototype);
|
||||
}
|
||||
}
|
||||
|
@ -64,6 +64,8 @@ export class AsmEditorView extends ResizableWidget {
|
||||
|
||||
this.editor.onDidFocusEditorWidget(() => asm_editor_store.undo.make_current()),
|
||||
);
|
||||
|
||||
this.finalize_construction(AsmEditorView.prototype);
|
||||
}
|
||||
|
||||
focus(): void {
|
||||
|
@ -12,5 +12,7 @@ export class DisabledView extends Widget {
|
||||
this.label = this.disposable(new Label(text, { enabled: false }));
|
||||
|
||||
this.element.append(this.label.element);
|
||||
|
||||
this.finalize_construction(DisabledView.prototype);
|
||||
}
|
||||
}
|
||||
|
@ -133,6 +133,8 @@ export class EntityInfoView extends ResizableWidget {
|
||||
}
|
||||
}),
|
||||
);
|
||||
|
||||
this.finalize_construction(EntityInfoView.prototype);
|
||||
}
|
||||
|
||||
dispose(): void {
|
||||
|
@ -28,6 +28,8 @@ export class NpcCountsView extends ResizableWidget {
|
||||
call_now: true,
|
||||
}),
|
||||
);
|
||||
|
||||
this.finalize_construction(NpcCountsView.prototype);
|
||||
}
|
||||
|
||||
private update_view(quest?: QuestModel): void {
|
||||
|
@ -90,5 +90,7 @@ export class QuesInfoView extends ResizableWidget {
|
||||
}
|
||||
}),
|
||||
);
|
||||
|
||||
this.finalize_construction(QuesInfoView.prototype);
|
||||
}
|
||||
}
|
||||
|
@ -133,5 +133,7 @@ export class QuestEditorToolBar extends ToolBar {
|
||||
}
|
||||
}),
|
||||
);
|
||||
|
||||
this.finalize_construction(QuestEditorToolBar.prototype);
|
||||
}
|
||||
}
|
||||
|
@ -115,6 +115,8 @@ export class QuestEditorView extends ResizableWidget {
|
||||
() => (quest_editor_store.debug.val = !quest_editor_store.debug.val),
|
||||
),
|
||||
);
|
||||
|
||||
this.finalize_construction(QuestEditorView.prototype);
|
||||
}
|
||||
|
||||
resize(width: number, height: number): this {
|
||||
|
@ -26,6 +26,8 @@ export class QuestRendererView extends ResizableWidget {
|
||||
}
|
||||
}),
|
||||
);
|
||||
|
||||
this.finalize_construction(QuestRendererView.prototype);
|
||||
}
|
||||
|
||||
resize(width: number, height: number): this {
|
||||
|
@ -39,6 +39,8 @@ export class TextureView extends ResizableWidget {
|
||||
}
|
||||
}),
|
||||
);
|
||||
|
||||
this.finalize_construction(TextureView.prototype);
|
||||
}
|
||||
|
||||
resize(width: number, height: number): this {
|
||||
|
@ -21,5 +21,7 @@ export class ViewerView extends TabContainer {
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
this.finalize_construction(ViewerView.prototype);
|
||||
}
|
||||
}
|
||||
|
@ -45,6 +45,8 @@ export class Model3DSelectListView<T extends { name: string }> extends Resizable
|
||||
}
|
||||
}),
|
||||
);
|
||||
|
||||
this.finalize_construction(Model3DSelectListView.prototype);
|
||||
}
|
||||
|
||||
private list_click = (e: MouseEvent) => {
|
||||
|
@ -69,5 +69,7 @@ export class Model3DToolBar extends ToolBar {
|
||||
|
||||
animation_frame_count_label.enabled.bind_to(enabled),
|
||||
);
|
||||
|
||||
this.finalize_construction(Model3DToolBar.prototype);
|
||||
}
|
||||
}
|
||||
|
@ -54,6 +54,8 @@ export class Model3DView extends ResizableWidget {
|
||||
}
|
||||
}),
|
||||
);
|
||||
|
||||
this.finalize_construction(Model3DView.prototype);
|
||||
}
|
||||
|
||||
resize(width: number, height: number): this {
|
||||
|
Loading…
Reference in New Issue
Block a user