electron-window-state
electron-window-state copied to clipboard
Transparency and Resziable is ignored when using it
Transparent and Resziable is ignored.
let mainWindowState = windowStateKeeper({ defaultWidth: 440, defaultHeight: 335, }); win = createWindow("main", { alwaysOnTop: true, //frame: false, transparent: true, //resizable: false, width: 440, height: 335, 'x': mainWindowState.x, 'y': mainWindowState.y, 'width': mainWindowState.width, 'height': mainWindowState.height, });