Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,9 @@ try {

if (mainWindow) {
// Someone tried to run a second instance, we should focus the existing window.
// show() is needed to restore windows hidden to the notification area (tray).
mainWindow.show();

if (mainWindow.isMinimized()) {
mainWindow.restore();
}
Expand Down
Loading