From f1e054db0c73801f5d9b14a4d28e34bf88e45eef Mon Sep 17 00:00:00 2001 From: luboslenco Date: Wed, 17 Sep 2025 22:51:15 +0200 Subject: [PATCH] Bump default window size --- paint/sources/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paint/sources/config.ts b/paint/sources/config.ts index 3bb604d4..b382ee30 100644 --- a/paint/sources/config.ts +++ b/paint/sources/config.ts @@ -118,8 +118,8 @@ function config_init() { config_raw.window_resizable = true; config_raw.window_minimizable = true; config_raw.window_maximizable = true; - config_raw.window_w = 1600; - config_raw.window_h = 900; + config_raw.window_w = 1720; + config_raw.window_h = 960; ///if arm_macos config_raw.window_w *= 2; config_raw.window_h *= 2;