From a9c9bfe4f0e5aeb264000041a7d384f5072fc658 Mon Sep 17 00:00:00 2001 From: stonedDiscord <10584181+stonedDiscord@users.noreply.github.com> Date: Mon, 26 Oct 2020 16:18:53 +0100 Subject: prevent essential windows from being closed --- webAO/ui.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'webAO/ui.js') diff --git a/webAO/ui.js b/webAO/ui.js index b44b425..7bd7ab6 100644 --- a/webAO/ui.js +++ b/webAO/ui.js @@ -18,6 +18,7 @@ const config = { width: 40, content: [{ type: "component", + isClosable: false, componentName: "template", title: "Game", componentState: { id: "client_wrapper" } @@ -32,12 +33,14 @@ const config = { type: "stack", content: [{ type: "component", + isClosable: false, title: "Main", componentName: "template", componentState: { id: "mainmenu" } }, { type: "component", + isClosable: false, title: "Log", componentName: "template", componentState: { id: "log" } -- cgit