summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--desktop/packages/mullvad-vpn/src/main/window-controller.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/packages/mullvad-vpn/src/main/window-controller.ts b/desktop/packages/mullvad-vpn/src/main/window-controller.ts
index 553c798334..370858e6f6 100644
--- a/desktop/packages/mullvad-vpn/src/main/window-controller.ts
+++ b/desktop/packages/mullvad-vpn/src/main/window-controller.ts
@@ -83,8 +83,8 @@ class AttachedToTrayWindowPositioning implements IWindowPositioning {
break;
case 'none':
- x = workArea.x + (workArea.width - windowBounds.width) * 0.5;
- y = workArea.y + (workArea.height - windowBounds.height) * 0.5;
+ x = workArea.x + (workArea.width - windowBounds.width);
+ y = workArea.y + (workArea.height - windowBounds.height);
break;
}