fix: prevent resize of window

Users fiddling with window and complaining.
This commit is contained in:
talksik
2026-03-21 16:58:44 -07:00
parent 8168b7d8f5
commit 18f587864f
+1 -1
View File
@@ -27,7 +27,7 @@ const createWindow = () => {
const mainWindow = new BrowserWindow({ const mainWindow = new BrowserWindow({
width: 715, width: 715,
height: 550, height: 550,
resizable: true, resizable: false,
frame: false, frame: false,
webPreferences: { webPreferences: {
preload: path.join(__dirname, 'preload.js'), preload: path.join(__dirname, 'preload.js'),