Don't popout the global settings editor by default

master
WolverinDEV 2021-01-22 18:19:16 +01:00
parent 817fedd00a
commit 01081ac3ac
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ export function spawnGlobalSettingsEditor() {
const events = new Registry<ModalGlobalSettingsEditorEvents>();
initializeController(events);
const modal = spawnModal("global-settings-editor", [ events.generateIpcDescription() ], { popoutable: true, popedOut: true });
const modal = spawnModal("global-settings-editor", [ events.generateIpcDescription() ], { popoutable: true, popedOut: false });
modal.show();
modal.getEvents().on("destroy", () => {
events.fire("notify_destroy");