From bc0ea3fdb4608499606bf590dddc047be1f2bf08 Mon Sep 17 00:00:00 2001 From: webadderall <131426131+webadderall@users.noreply.github.com> Date: Sat, 21 Mar 2026 10:47:28 +1100 Subject: [PATCH] tweak: open editor at 85 percent of screen --- electron/windows.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electron/windows.ts b/electron/windows.ts index 82dc4ab4..eade375c 100644 --- a/electron/windows.ts +++ b/electron/windows.ts @@ -277,8 +277,8 @@ export function createEditorWindow(): BrowserWindow { const { width, height } = getScreen().getPrimaryDisplay().workAreaSize; const win = new BrowserWindow({ - width: Math.round(width * 0.8), - height: Math.round(height * 0.8), + width: Math.round(width * 0.85), + height: Math.round(height * 0.85), minWidth: 800, minHeight: 600, ...(process.platform !== "darwin" && {