From a88b4fb166f2415c3d3e2b6570aa94f743d09e47 Mon Sep 17 00:00:00 2001 From: Juny Date: Tue, 13 Feb 2024 19:26:26 -0300 Subject: [PATCH] PStyle: fix PBusyIndicator center --- src/Gui/Style/PStyle/PBusyIndicator.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gui/Style/PStyle/PBusyIndicator.qml b/src/Gui/Style/PStyle/PBusyIndicator.qml index 016218c..0c49198 100644 --- a/src/Gui/Style/PStyle/PBusyIndicator.qml +++ b/src/Gui/Style/PStyle/PBusyIndicator.qml @@ -13,8 +13,8 @@ BusyIndicator { Item { id: item - x: 0 - y: 0 + x: -parent.width / 2 + y: -parent.width / 2 width: parent.width height: parent.height opacity: control.running ? 1 : 0