From 1a7e9ee9acc732fb4d5c895657a5802651a5eab5 Mon Sep 17 00:00:00 2001 From: jtuu Date: Wed, 2 Oct 2019 21:34:57 +0300 Subject: [PATCH] [VM] Put the "run in VM" button behind a feature flag called "vm". --- src/quest_editor/gui/QuestEditorToolBar.ts | 25 ++++++++++++---------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/src/quest_editor/gui/QuestEditorToolBar.ts b/src/quest_editor/gui/QuestEditorToolBar.ts index 8d517aab..a99e6a81 100644 --- a/src/quest_editor/gui/QuestEditorToolBar.ts +++ b/src/quest_editor/gui/QuestEditorToolBar.ts @@ -74,17 +74,20 @@ export class QuestEditorToolBar extends ToolBar { tooltip: "[Experimental] Run the current quest in a virtual machine." }); - super({ - children: [ - new_quest_button, - open_file_button, - save_as_button, - undo_button, - redo_button, - area_select, - run_button, - ], - }); + const children = [ + new_quest_button, + open_file_button, + save_as_button, + undo_button, + redo_button, + area_select, + ]; + + if (gui_store.feature_active("vm")) { + children.push(run_button); + } + + super({ children }); const quest_loaded = quest_editor_store.current_quest.map(q => q != undefined);