From 7f69bb89e5f5c8ff331970100e920ad36183cb7e Mon Sep 17 00:00:00 2001 From: Nick Oates Date: Sun, 15 Sep 2024 10:45:51 -0700 Subject: [PATCH] QuickCSS: Prevent flash of white background --- src/main/ipcMain.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/ipcMain.ts b/src/main/ipcMain.ts index 62785867e..d481fbb35 100644 --- a/src/main/ipcMain.ts +++ b/src/main/ipcMain.ts @@ -130,6 +130,7 @@ ipcMain.handle(IpcEvents.OPEN_MONACO_EDITOR, async () => { title, autoHideMenuBar: true, darkTheme: true, + backgroundColor: "#1e1e1e", webPreferences: { preload: join(__dirname, IS_DISCORD_DESKTOP ? "preload.js" : "vencordDesktopPreload.js"), contextIsolation: true,