fix window size to accomidate new button

This commit is contained in:
The Ghost of FOSS' Past 2024-11-25 14:32:43 -06:00
parent 1c1f7934fb
commit fc736da1d3

View file

@ -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'),