mirror of https://github.com/keeweb/keeweb
fix #1581: double-clicking KeeWeb icon in Dock
parent
17be9cf266
commit
84f707d6cd
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue