From 18f587864f44b786b56580d86516ca4baa0b1817 Mon Sep 17 00:00:00 2001 From: talksik Date: Sat, 21 Mar 2026 16:58:44 -0700 Subject: [PATCH] fix: prevent resize of window Users fiddling with window and complaining. --- js/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/main.ts b/js/src/main.ts index 9963240..b95bc53 100644 --- a/js/src/main.ts +++ b/js/src/main.ts @@ -27,7 +27,7 @@ const createWindow = () => { const mainWindow = new BrowserWindow({ width: 715, height: 550, - resizable: true, + resizable: false, frame: false, webPreferences: { preload: path.join(__dirname, 'preload.js'),