fix #1581: double-clicking KeeWeb icon in Dock

This commit is contained in:
antelle 2020-08-08 12:20:08 +02:00
parent 17be9cf266
commit 84f707d6cd
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
2 changed files with 7 additions and 1 deletions

View File

@ -119,7 +119,7 @@ app.on('open-file', (e, path) => {
});
app.on('activate', () => {
if (process.platform === 'darwin') {
if (appReady && !mainWindow) {
if (appReady && !mainWindow && appSettings) {
createMainWindow();
}
}

View File

@ -1,5 +1,11 @@
Release notes
-------------
##### v1.16.0 (TBD)
`-` fix #1581: double-clicking KeeWeb icon in Dock
##### v1.15.5 (2020-06-13)
`-` fix #1539: broken code signing on Windows
##### v1.15.4 (2020-06-13)
`-` fix #1536: added a missing dependency on linux
`-` fix #1532: crashes on some Windows builds (updated electron)