Increase minimum height of main window to 800

This commit is contained in:
Jan-Henrik Bruhn 2025-12-12 11:54:58 +01:00 committed by GitHub
parent 821f41d69a
commit 2d38451629
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,7 +29,7 @@ function createWindow() {
width: 1600,
height: 1000,
minWidth: 1280, // Prevent layout from breaking into single-column mobile view
minHeight: 720,
minHeight: 800,
autoHideMenuBar: true, // Hide the menu bar (can be toggled with Alt key)
webPreferences: {
preload: join(__dirname, 'preload.js'),