()
| 83 | } |
| 84 | |
| 85 | bringToFront(): void { |
| 86 | const { browserWindow: win } = this |
| 87 | if (!win) return |
| 88 | if (win.isMinimized()) win.restore() |
| 89 | if (!win.isVisible()) win.show() |
| 90 | win.focus() |
| 91 | win.moveTop() |
| 92 | } |
| 93 | |
| 94 | reload(): void { |
| 95 | this.browserWindow?.reload() |
no test coverage detected