electron-window-state icon indicating copy to clipboard operation
electron-window-state copied to clipboard

Transparency and Resziable is ignored when using it

Open hevilp opened this issue 7 years ago • 0 comments

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, });

hevilp avatar Jan 21 '18 20:01 hevilp