Added more finalize_construction calls where necessary.

This commit is contained in:
Daan Vanden Bosch 2019-09-14 15:20:36 +02:00
parent 3a95e8a974
commit 9906ea88a9
16 changed files with 32 additions and 0 deletions

View File

@ -22,5 +22,7 @@ export class HelpView extends ResizableWidget {
}),
),
);
this.finalize_construction(HelpView.prototype);
}
}

View File

@ -97,6 +97,8 @@ export class MethodsForEpisodeView extends ResizableWidget {
{ call_now: true },
),
);
this.finalize_construction(MethodsForEpisodeView.prototype);
}
dispose(): void {

View File

@ -30,5 +30,7 @@ export class MethodsView extends TabContainer {
},
],
});
this.finalize_construction(MethodsView.prototype);
}
}

View File

@ -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 {

View File

@ -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);
}
}

View File

@ -133,6 +133,8 @@ export class EntityInfoView extends ResizableWidget {
}
}),
);
this.finalize_construction(EntityInfoView.prototype);
}
dispose(): void {

View File

@ -28,6 +28,8 @@ export class NpcCountsView extends ResizableWidget {
call_now: true,
}),
);
this.finalize_construction(NpcCountsView.prototype);
}
private update_view(quest?: QuestModel): void {

View File

@ -90,5 +90,7 @@ export class QuesInfoView extends ResizableWidget {
}
}),
);
this.finalize_construction(QuesInfoView.prototype);
}
}

View File

@ -133,5 +133,7 @@ export class QuestEditorToolBar extends ToolBar {
}
}),
);
this.finalize_construction(QuestEditorToolBar.prototype);
}
}

View File

@ -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 {

View File

@ -26,6 +26,8 @@ export class QuestRendererView extends ResizableWidget {
}
}),
);
this.finalize_construction(QuestRendererView.prototype);
}
resize(width: number, height: number): this {

View File

@ -39,6 +39,8 @@ export class TextureView extends ResizableWidget {
}
}),
);
this.finalize_construction(TextureView.prototype);
}
resize(width: number, height: number): this {

View File

@ -21,5 +21,7 @@ export class ViewerView extends TabContainer {
},
],
});
this.finalize_construction(ViewerView.prototype);
}
}

View File

@ -45,6 +45,8 @@ export class Model3DSelectListView<T extends { name: string }> extends Resizable
}
}),
);
this.finalize_construction(Model3DSelectListView.prototype);
}
private list_click = (e: MouseEvent) => {

View File

@ -69,5 +69,7 @@ export class Model3DToolBar extends ToolBar {
animation_frame_count_label.enabled.bind_to(enabled),
);
this.finalize_construction(Model3DToolBar.prototype);
}
}

View File

@ -54,6 +54,8 @@ export class Model3DView extends ResizableWidget {
}
}),
);
this.finalize_construction(Model3DView.prototype);
}
resize(width: number, height: number): this {