mirror of
https://github.com/jhbruhn/respira.git
synced 2026-01-27 10:23:41 +00:00
Increase minimum height of main window to 800
This commit is contained in:
parent
821f41d69a
commit
2d38451629
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ function createWindow() {
|
||||||
width: 1600,
|
width: 1600,
|
||||||
height: 1000,
|
height: 1000,
|
||||||
minWidth: 1280, // Prevent layout from breaking into single-column mobile view
|
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)
|
autoHideMenuBar: true, // Hide the menu bar (can be toggled with Alt key)
|
||||||
webPreferences: {
|
webPreferences: {
|
||||||
preload: join(__dirname, 'preload.js'),
|
preload: join(__dirname, 'preload.js'),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue