1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

JS-4473: fix

This commit is contained in:
Andrew Simachev 2024-04-30 09:41:35 +02:00
parent ce4d65754f
commit 1f19b0db09
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8

View file

@ -209,4 +209,10 @@ app.on('open-url', (e, url) => {
Util.send(mainWindow, 'route', Util.getRouteFromUrl(url));
mainWindow.show();
};
});
});
if (is.windows) {
app.on('window-all-closed', () => {
Api.exit(mainWindow, '', false);
});
};