From 8668e39446cf3f6c7ae543d9fcf5113d221a0f46 Mon Sep 17 00:00:00 2001 From: runhey <2234044577@qq.com> Date: Thu, 11 May 2023 21:18:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20FluProgressRing=E5=8F=AF=E4=BB=A5?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=A4=A7=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/imports/FluentUI/Controls/FluProgressRing.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/imports/FluentUI/Controls/FluProgressRing.qml b/src/imports/FluentUI/Controls/FluProgressRing.qml index 28b92e4..4e5b932 100644 --- a/src/imports/FluentUI/Controls/FluProgressRing.qml +++ b/src/imports/FluentUI/Controls/FluProgressRing.qml @@ -4,7 +4,7 @@ import FluentUI Rectangle { - property real linWidth : 5 + property real linWidth : width/8 property real progress: 0.25 property bool indeterminate: true readonly property real radius2 : radius - linWidth/2 @@ -13,7 +13,7 @@ Rectangle { id: control width: 44 height: 44 - radius: 22 + radius: width/2 border.width: linWidth color: "#00000000" border.color: FluTheme.dark ? Qt.rgba(99/255,99/255,99/255,1) : Qt.rgba(214/255,214/255,214/255,1)