From 74d4172f5435c3fdac64a0fe44b285742830fbb4 Mon Sep 17 00:00:00 2001 From: tusharmagar Date: Mon, 16 Mar 2026 21:38:34 +0530 Subject: [PATCH] Maximize window on ready-to-show event in main.ts to improve user experience by preventing blank screen on launch. --- apps/x/apps/main/src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/x/apps/main/src/main.ts b/apps/x/apps/main/src/main.ts index 4dbe6117..579fdbfa 100644 --- a/apps/x/apps/main/src/main.ts +++ b/apps/x/apps/main/src/main.ts @@ -103,6 +103,7 @@ function createWindow() { // Show window when content is ready to prevent blank screen win.once("ready-to-show", () => { + win.maximize(); win.show(); });