diff --git a/src/window.ts b/src/window.ts index fce979c..8cfad21 100644 --- a/src/window.ts +++ b/src/window.ts @@ -101,7 +101,12 @@ async function doAfterDefiningTheWindow(): Promise { url === "https://canary.discord.com/popout" || url === "https://ptb.discord.com/popout" ) - return {action: "allow"}; + return { + action: "allow", + overrideBrowserWindowOptions: { + alwaysOnTop: true + } + }; if (url.startsWith("https:") || url.startsWith("http:") || url.startsWith("mailto:")) { shell.openExternal(url); } else if (ignoreProtocolWarning) {