diff --git a/src/electron/window.main.ts b/src/electron/window.main.ts index cdf9d68bb7..36f26f82d2 100644 --- a/src/electron/window.main.ts +++ b/src/electron/window.main.ts @@ -37,7 +37,7 @@ export class WindowMain { // Someone tried to run a second instance, we should focus our window. if (this.win != null) { if (this.win.isMinimized()) { - this.win.restore(); + this.win.show(); } this.win.focus(); }