showing results for - "electron no resize"
Simon
18 Aug 2020
1const mainWindow = new BrowserWindow({
2    width: 1600,
3    height: 900,
4    resizable: false,
5});
Michela
30 Jul 2020
1mainWindow.setResizable(false);
2