fix window size to accomidate new button
This commit is contained in:
parent
1c1f7934fb
commit
fc736da1d3
1 changed files with 2 additions and 2 deletions
4
main.js
4
main.js
|
@ -71,9 +71,9 @@ function createWindow () {
|
|||
console.log("Creating a new window in the same extension session...")
|
||||
}
|
||||
const mainWindow = new BrowserWindow({
|
||||
width: 1100,
|
||||
width: 1220,
|
||||
height: 600,
|
||||
minWidth: 1100,
|
||||
minWidth: 1220,
|
||||
minHeight: 600,
|
||||
webPreferences: {
|
||||
preload: path.join(__dirname, 'preload.js'),
|
||||
|
|
Loading…
Reference in a new issue