rhysd / electron-about-window

'About This App' mini-window for Electron apps
https://www.npmjs.com/package/about-window
MIT License
413 stars 45 forks source link

Frameless window issues #40

Closed mnakalay closed 5 years ago

mnakalay commented 5 years ago

Hello,

When making the window frameless (win_options with frame: false) The icon and close button are not clickable anymore and of course, it means there's no way to close the window.

It's a simple CSS issue actually. All you need to make it work is this:

.clickable,
.buttons button {
    -webkit-app-region: no-drag;
}
rhysd commented 5 years ago

Should be fixed by #41