From 9906ea88a9b110631868579ff3414b18ce57c5eb Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sat, 14 Sep 2019 15:20:36 +0200 Subject: [PATCH] Added more finalize_construction calls where necessary. --- src/hunt_optimizer/gui/HelpView.ts | 2 ++ src/hunt_optimizer/gui/MethodsForEpisodeView.ts | 2 ++ src/hunt_optimizer/gui/MethodsView.ts | 2 ++ src/quest_editor/gui/AsmEditorView.ts | 2 ++ src/quest_editor/gui/DisabledView.ts | 2 ++ src/quest_editor/gui/EntityInfoView.ts | 2 ++ src/quest_editor/gui/NpcCountsView.ts | 2 ++ src/quest_editor/gui/QuesInfoView.ts | 2 ++ src/quest_editor/gui/QuestEditorToolBar.ts | 2 ++ src/quest_editor/gui/QuestEditorView.ts | 2 ++ src/quest_editor/gui/QuestRendererView.ts | 2 ++ src/viewer/gui/TextureView.ts | 2 ++ src/viewer/gui/ViewerView.ts | 2 ++ src/viewer/gui/model_3d/Model3DSelectListView.ts | 2 ++ src/viewer/gui/model_3d/Model3DToolBar.ts | 2 ++ src/viewer/gui/model_3d/Model3DView.ts | 2 ++ 16 files changed, 32 insertions(+) diff --git a/src/hunt_optimizer/gui/HelpView.ts b/src/hunt_optimizer/gui/HelpView.ts index 8302cb8b..dc533150 100644 --- a/src/hunt_optimizer/gui/HelpView.ts +++ b/src/hunt_optimizer/gui/HelpView.ts @@ -22,5 +22,7 @@ export class HelpView extends ResizableWidget { }), ), ); + + this.finalize_construction(HelpView.prototype); } } diff --git a/src/hunt_optimizer/gui/MethodsForEpisodeView.ts b/src/hunt_optimizer/gui/MethodsForEpisodeView.ts index df541a59..9c90ecbb 100644 --- a/src/hunt_optimizer/gui/MethodsForEpisodeView.ts +++ b/src/hunt_optimizer/gui/MethodsForEpisodeView.ts @@ -97,6 +97,8 @@ export class MethodsForEpisodeView extends ResizableWidget { { call_now: true }, ), ); + + this.finalize_construction(MethodsForEpisodeView.prototype); } dispose(): void { diff --git a/src/hunt_optimizer/gui/MethodsView.ts b/src/hunt_optimizer/gui/MethodsView.ts index 2e8334ec..a3e337cc 100644 --- a/src/hunt_optimizer/gui/MethodsView.ts +++ b/src/hunt_optimizer/gui/MethodsView.ts @@ -30,5 +30,7 @@ export class MethodsView extends TabContainer { }, ], }); + + this.finalize_construction(MethodsView.prototype); } } diff --git a/src/quest_editor/gui/AsmEditorView.ts b/src/quest_editor/gui/AsmEditorView.ts index cab1b291..ed936ba4 100644 --- a/src/quest_editor/gui/AsmEditorView.ts +++ b/src/quest_editor/gui/AsmEditorView.ts @@ -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 { diff --git a/src/quest_editor/gui/DisabledView.ts b/src/quest_editor/gui/DisabledView.ts index 3f8718f2..3247093d 100644 --- a/src/quest_editor/gui/DisabledView.ts +++ b/src/quest_editor/gui/DisabledView.ts @@ -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); } } diff --git a/src/quest_editor/gui/EntityInfoView.ts b/src/quest_editor/gui/EntityInfoView.ts index f7b38b1e..46c28585 100644 --- a/src/quest_editor/gui/EntityInfoView.ts +++ b/src/quest_editor/gui/EntityInfoView.ts @@ -133,6 +133,8 @@ export class EntityInfoView extends ResizableWidget { } }), ); + + this.finalize_construction(EntityInfoView.prototype); } dispose(): void { diff --git a/src/quest_editor/gui/NpcCountsView.ts b/src/quest_editor/gui/NpcCountsView.ts index 9b4e8c53..8029d641 100644 --- a/src/quest_editor/gui/NpcCountsView.ts +++ b/src/quest_editor/gui/NpcCountsView.ts @@ -28,6 +28,8 @@ export class NpcCountsView extends ResizableWidget { call_now: true, }), ); + + this.finalize_construction(NpcCountsView.prototype); } private update_view(quest?: QuestModel): void { diff --git a/src/quest_editor/gui/QuesInfoView.ts b/src/quest_editor/gui/QuesInfoView.ts index 3d5aa2da..e64a4d13 100644 --- a/src/quest_editor/gui/QuesInfoView.ts +++ b/src/quest_editor/gui/QuesInfoView.ts @@ -90,5 +90,7 @@ export class QuesInfoView extends ResizableWidget { } }), ); + + this.finalize_construction(QuesInfoView.prototype); } } diff --git a/src/quest_editor/gui/QuestEditorToolBar.ts b/src/quest_editor/gui/QuestEditorToolBar.ts index e3857883..70156177 100644 --- a/src/quest_editor/gui/QuestEditorToolBar.ts +++ b/src/quest_editor/gui/QuestEditorToolBar.ts @@ -133,5 +133,7 @@ export class QuestEditorToolBar extends ToolBar { } }), ); + + this.finalize_construction(QuestEditorToolBar.prototype); } } diff --git a/src/quest_editor/gui/QuestEditorView.ts b/src/quest_editor/gui/QuestEditorView.ts index e6628bdc..6dd50b9a 100644 --- a/src/quest_editor/gui/QuestEditorView.ts +++ b/src/quest_editor/gui/QuestEditorView.ts @@ -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 { diff --git a/src/quest_editor/gui/QuestRendererView.ts b/src/quest_editor/gui/QuestRendererView.ts index 4d82ab22..24866166 100644 --- a/src/quest_editor/gui/QuestRendererView.ts +++ b/src/quest_editor/gui/QuestRendererView.ts @@ -26,6 +26,8 @@ export class QuestRendererView extends ResizableWidget { } }), ); + + this.finalize_construction(QuestRendererView.prototype); } resize(width: number, height: number): this { diff --git a/src/viewer/gui/TextureView.ts b/src/viewer/gui/TextureView.ts index 75759c61..cf49830b 100644 --- a/src/viewer/gui/TextureView.ts +++ b/src/viewer/gui/TextureView.ts @@ -39,6 +39,8 @@ export class TextureView extends ResizableWidget { } }), ); + + this.finalize_construction(TextureView.prototype); } resize(width: number, height: number): this { diff --git a/src/viewer/gui/ViewerView.ts b/src/viewer/gui/ViewerView.ts index e6ca06c7..dd253a72 100644 --- a/src/viewer/gui/ViewerView.ts +++ b/src/viewer/gui/ViewerView.ts @@ -21,5 +21,7 @@ export class ViewerView extends TabContainer { }, ], }); + + this.finalize_construction(ViewerView.prototype); } } diff --git a/src/viewer/gui/model_3d/Model3DSelectListView.ts b/src/viewer/gui/model_3d/Model3DSelectListView.ts index 3607ddea..d8357884 100644 --- a/src/viewer/gui/model_3d/Model3DSelectListView.ts +++ b/src/viewer/gui/model_3d/Model3DSelectListView.ts @@ -45,6 +45,8 @@ export class Model3DSelectListView extends Resizable } }), ); + + this.finalize_construction(Model3DSelectListView.prototype); } private list_click = (e: MouseEvent) => { diff --git a/src/viewer/gui/model_3d/Model3DToolBar.ts b/src/viewer/gui/model_3d/Model3DToolBar.ts index 529b288d..103855d0 100644 --- a/src/viewer/gui/model_3d/Model3DToolBar.ts +++ b/src/viewer/gui/model_3d/Model3DToolBar.ts @@ -69,5 +69,7 @@ export class Model3DToolBar extends ToolBar { animation_frame_count_label.enabled.bind_to(enabled), ); + + this.finalize_construction(Model3DToolBar.prototype); } } diff --git a/src/viewer/gui/model_3d/Model3DView.ts b/src/viewer/gui/model_3d/Model3DView.ts index d9d037c7..561a748f 100644 --- a/src/viewer/gui/model_3d/Model3DView.ts +++ b/src/viewer/gui/model_3d/Model3DView.ts @@ -54,6 +54,8 @@ export class Model3DView extends ResizableWidget { } }), ); + + this.finalize_construction(Model3DView.prototype); } resize(width: number, height: number): this {