QuickCss: reopen existing window instead of new one

main
Vendicated 8 months ago
parent 69a4d2734e
commit 2ab1c50c73
No known key found for this signature in database
GPG Key ID: D66986BAF75ECF18

@ -139,8 +139,15 @@ export function initIpc(mainWindow: BrowserWindow) {
}
ipcMain.handle(IpcEvents.OPEN_MONACO_EDITOR, async () => {
const title = "Vencord QuickCSS Editor";
const existingWindow = BrowserWindow.getAllWindows().find(w => w.title === title);
if (existingWindow && !existingWindow.isDestroyed()) {
existingWindow.focus();
return;
}
const win = new BrowserWindow({
title: "Vencord QuickCSS Editor",
title,
autoHideMenuBar: true,
darkTheme: true,
webPreferences: {

Loading…
Cancel
Save