From 5e8e897acc5821bbf0f12b0dd84378e0b453c92c Mon Sep 17 00:00:00 2001 From: "B.Melnik" Date: Mon, 19 Jul 2021 16:03:35 +0300 Subject: [PATCH] fix: Update window position to center Closes: #2930 --- ui/main.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/main.qml b/ui/main.qml index d45d7c74a9..bc8223f9da 100644 --- a/ui/main.qml +++ b/ui/main.qml @@ -120,6 +120,8 @@ StatusWindow { Style.changeTheme(globalSettings.theme) setX(Qt.application.screens[0].width / 2 - width / 2); setY(Qt.application.screens[0].height / 2 - height / 2); + + applicationWindow.updatePosition(); } signal navigateTo(string path)