diff --git a/src/quest_editor/gui/QuesInfoView.css b/src/quest_editor/gui/QuesInfoView.css deleted file mode 100644 index 34edff6c..00000000 --- a/src/quest_editor/gui/QuesInfoView.css +++ /dev/null @@ -1,26 +0,0 @@ -.quest_editor_QuesInfoView { - box-sizing: border-box; - padding: 3px; - overflow: auto; - outline: none; -} - -.quest_editor_QuesInfoView table { - width: 100%; -} - -.quest_editor_QuesInfoView th { - text-align: left; -} - -.quest_editor_QuesInfoView .core_TextInput { - width: 100%; -} - -.quest_editor_QuesInfoView .core_TextArea { - width: 100%; -} - -.quest_editor_QuesInfoView textarea { - width: 100%; -} diff --git a/src/quest_editor/gui/QuestEditorView.ts b/src/quest_editor/gui/QuestEditorView.ts index 6dd50b9a..0f08f2fd 100644 --- a/src/quest_editor/gui/QuestEditorView.ts +++ b/src/quest_editor/gui/QuestEditorView.ts @@ -3,7 +3,7 @@ import { create_element, el } from "../../core/gui/dom"; import { QuestEditorToolBar } from "./QuestEditorToolBar"; import GoldenLayout, { Container, ContentItem, ItemConfigType } from "golden-layout"; import { quest_editor_ui_persister } from "../persistence/QuestEditorUiPersister"; -import { QuesInfoView } from "./QuesInfoView"; +import { QuestInfoView } from "./QuestInfoView"; import "golden-layout/src/css/goldenlayout-base.css"; import "../../core/gui/golden_layout_theme.css"; import { NpcCountsView } from "./NpcCountsView"; @@ -18,7 +18,7 @@ const logger = Logger.get("quest_editor/gui/QuestEditorView"); // Don't change these values, as they are persisted in the user's browser. const VIEW_TO_NAME = new Map ResizableWidget, string>([ - [QuesInfoView, "quest_info"], + [QuestInfoView, "quest_info"], [NpcCountsView, "npc_counts"], [QuestRendererView, "quest_renderer"], [AsmEditorView, "asm_editor"], @@ -53,7 +53,7 @@ const DEFAULT_LAYOUT_CONTENT: ItemConfigType[] = [ { title: "Info", type: "component", - componentName: VIEW_TO_NAME.get(QuesInfoView), + componentName: VIEW_TO_NAME.get(QuestInfoView), isClosable: false, }, { diff --git a/src/quest_editor/gui/QuestInfoView.css b/src/quest_editor/gui/QuestInfoView.css new file mode 100644 index 00000000..01d331bb --- /dev/null +++ b/src/quest_editor/gui/QuestInfoView.css @@ -0,0 +1,26 @@ +.quest_editor_QuestInfoView { + box-sizing: border-box; + padding: 3px; + overflow: auto; + outline: none; +} + +.quest_editor_QuestInfoView table { + width: 100%; +} + +.quest_editor_QuestInfoView th { + text-align: left; +} + +.quest_editor_QuestInfoView .core_TextInput { + width: 100%; +} + +.quest_editor_QuestInfoView .core_TextArea { + width: 100%; +} + +.quest_editor_QuestInfoView textarea { + width: 100%; +} diff --git a/src/quest_editor/gui/QuesInfoView.ts b/src/quest_editor/gui/QuestInfoView.ts similarity index 94% rename from src/quest_editor/gui/QuesInfoView.ts rename to src/quest_editor/gui/QuestInfoView.ts index e64a4d13..5b62073d 100644 --- a/src/quest_editor/gui/QuesInfoView.ts +++ b/src/quest_editor/gui/QuestInfoView.ts @@ -6,10 +6,10 @@ import { NumberInput } from "../../core/gui/NumberInput"; import { Disposer } from "../../core/observable/Disposer"; import { TextInput } from "../../core/gui/TextInput"; import { TextArea } from "../../core/gui/TextArea"; -import "./QuesInfoView.css"; +import "./QuestInfoView.css"; import { DisabledView } from "./DisabledView"; -export class QuesInfoView extends ResizableWidget { +export class QuestInfoView extends ResizableWidget { private readonly table_element = el.table(); private readonly episode_element: HTMLElement; private readonly id_input = this.disposable(new NumberInput()); @@ -40,7 +40,7 @@ export class QuesInfoView extends ResizableWidget { private readonly quest_disposer = this.disposable(new Disposer()); constructor() { - super(el.div({ class: "quest_editor_QuesInfoView", tab_index: -1 })); + super(el.div({ class: "quest_editor_QuestInfoView", tab_index: -1 })); const quest = quest_editor_store.current_quest; const no_quest = quest.map(q => q == undefined); @@ -91,6 +91,6 @@ export class QuesInfoView extends ResizableWidget { }), ); - this.finalize_construction(QuesInfoView.prototype); + this.finalize_construction(QuestInfoView.prototype); } }