From 3bff30e53354541c34fea601202e19859a6f34e6 Mon Sep 17 00:00:00 2001 From: li-li-wang Date: Mon, 7 Apr 2025 16:04:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=89=E5=85=A8=E6=8E=A7=E4=BB=B6=E5=BC=B9?= =?UTF-8?q?=E7=AA=97=E6=9B=BF=E6=8D=A2=E6=98=9F=E7=9B=BE=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: li-li-wang --- permissionmanager/src/main/ets/pages/securityDialog.ets | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/permissionmanager/src/main/ets/pages/securityDialog.ets b/permissionmanager/src/main/ets/pages/securityDialog.ets index 61abd38..7d7aa38 100644 --- a/permissionmanager/src/main/ets/pages/securityDialog.ets +++ b/permissionmanager/src/main/ets/pages/securityDialog.ets @@ -87,9 +87,10 @@ function dialogContentsArea(params: DialogInfo) { Column() { Column() { Row() { - SymbolGlyph($r('sys.symbol.person_shield_fill')) + SymbolGlyph($r('sys.symbol.security_shield')) .fontSize(Constants.FONT_SIZE_28) - .fontColor([$r('sys.color.brand')]) + .renderingStrategy(SymbolRenderingStrategy.MULTIPLE_COLOR) + .fontColor(['#E5000000', '#0A59F7']) } .width(Constants.SECURITY_ICON_WIDTH) .height(Constants.SECURITY_ICON_HEIGHT) -- Gitee