fix: allow smaller min width (#2695)
This commit is contained in:
parent
7d67087919
commit
8cea51e733
@ -1,9 +1,10 @@
|
||||
const DEFAULT_WIDTH = 1200
|
||||
const DEFAULT_MIN_WIDTH = 400
|
||||
const DEFAULT_HEIGHT = 800
|
||||
|
||||
export const mainWindowConfig: Electron.BrowserWindowConstructorOptions = {
|
||||
width: DEFAULT_WIDTH,
|
||||
minWidth: DEFAULT_WIDTH,
|
||||
minWidth: DEFAULT_MIN_WIDTH,
|
||||
height: DEFAULT_HEIGHT,
|
||||
skipTaskbar: false,
|
||||
show: true,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user