From e3a0d8abc59d964ad862d47ff162a87da23dfcc4 Mon Sep 17 00:00:00 2001 From: youdiansaodongxi Date: Thu, 23 May 2024 19:13:02 +0800 Subject: [PATCH] =?UTF-8?q?fix(AppControls2):=20=E6=9C=80=E8=BF=91?= =?UTF-8?q?=E5=AE=89=E8=A3=85=E6=A0=87=E8=AE=B0=E9=A2=9C=E8=89=B2=E8=B7=9F?= =?UTF-8?q?=E9=9A=8F=E4=B8=BB=E9=A2=98=E8=89=B2=E5=8F=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qml/AppControls2/AppItem.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qml/AppControls2/AppItem.qml b/qml/AppControls2/AppItem.qml index 2e14b09..15245fe 100644 --- a/qml/AppControls2/AppItem.qml +++ b/qml/AppControls2/AppItem.qml @@ -69,13 +69,14 @@ MouseArea { } } - Rectangle { + UkuiItems.StyleBackground { id: tagPoint visible: tagLabel.sourceComponent != null ? false : isRecentInstalled anchors.centerIn: parent width: 8; height: width radius: width / 2 - color: Platform.Theme.highlight() + useStyleTransparency: false + paletteRole: Platform.Theme.Highlight } } }