reopen window if exit to tray

This commit is contained in:
Kendall Garner 2024-05-25 08:14:01 -07:00
parent 67deb3e3d8
commit 961d1838c0
No known key found for this signature in database
GPG key ID: 18D2767419676C87

View file

@ -629,6 +629,8 @@ if (!singleInstance) {
if (mainWindow) {
if (mainWindow.isMinimized()) {
mainWindow.restore();
} else if (!mainWindow.isVisible()) {
mainWindow.show();
}
mainWindow.focus();