From 086cc205f0749a7d2ddbdb430e1be99b6c4f49b9 Mon Sep 17 00:00:00 2001 From: Thomas Obermueller Date: Wed, 20 May 2026 16:15:19 +0000 Subject: [PATCH] fix(code): reduce window minWidth so half-screen tiling works The 1200px floor blocked users on smaller laptops from pinning the window to half a screen. Drop it to 800px. Generated-By: PostHog Code Task-Id: d8be0ab0-cbd0-4ad1-8358-e58c560b2f53 --- apps/code/src/main/window.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/code/src/main/window.ts b/apps/code/src/main/window.ts index 667b62e81..d5796c939 100644 --- a/apps/code/src/main/window.ts +++ b/apps/code/src/main/window.ts @@ -182,7 +182,7 @@ export function createWindow(): void { ...(savedState.y !== undefined && { y: savedState.y }), width: savedState.width, height: savedState.height, - minWidth: 1200, + minWidth: 800, minHeight: 600, backgroundColor: "#0a0a0a", ...platformWindowConfig,