Fixed: don't show mini-window in macOS

This commit is contained in:
Molunerfinn
2018-09-18 19:08:26 +08:00
parent aea0c3661d
commit c8b4bebe1d
2 changed files with 5 additions and 1 deletions

View File

@@ -229,6 +229,10 @@ const createMiniWidow = () => {
obj.transparent = false
}
if (process.platform === 'darwin') {
obj.show = false
}
if (db.read().get('miniWindowOntop').value()) {
obj.alwaysOnTop = true
}