diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | gui/src/main/window-controller.ts | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 44896ce283..cb12cc7807 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -71,6 +71,7 @@ Line wrap the file at 100 chars. Th - Fix daemon not starting if all excluded app paths reside on non-existent/unmounted volumes. - Remove tray icon of current running app version when upgrading. - Allow Mullvad wireguard-nt tunnels to work simultaneously with other wg-nt tunnels. +- Fix notifications on Windows not showing if window is unpinned and hidden. #### Android - Fix Quick Settings tile showing wrong state in certain scenarios. diff --git a/gui/src/main/window-controller.ts b/gui/src/main/window-controller.ts index c4d6b47232..09250f4f8c 100644 --- a/gui/src/main/window-controller.ts +++ b/gui/src/main/window-controller.ts @@ -179,7 +179,7 @@ export default class WindowController { } public isVisible(): boolean { - return this.window?.isVisible() ?? false; + return this.window !== undefined && this.window.isVisible() && !this.window.isMinimized(); } public updatePosition() { |
