From f602e348122445da5cca64187bc03744eac38900 Mon Sep 17 00:00:00 2001 From: Dss Date: Fri, 24 Jul 2026 15:05:37 +0800 Subject: [PATCH] fix(hotspot): reduce my hotspot title font weight to match shared settings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Change the My Hotspot title label font weight from 700 to 500 2. Align the title weight with the default DccTitleObject used by Shared Settings below Log: Reduce My Hotspot title font weight to match Shared Settings title Influence: Hotspot page title no longer appears overly bold fix(hotspot): 减小我的热点标题字重以与共享设置一致 1. 将"我的热点"标题标签字重从 700 改为 500 2. 使标题字重与下方"共享设置"使用的默认 DccTitleObject 保持一致 Log: 减小我的热点标题字重以与共享设置标题一致 PMS: BUG-371463 Influence: 热点页面标题不再过粗 --- dcc-network/qml/PageHotspot.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dcc-network/qml/PageHotspot.qml b/dcc-network/qml/PageHotspot.qml index 6bcb2c593..71eb1bcbe 100644 --- a/dcc-network/qml/PageHotspot.qml +++ b/dcc-network/qml/PageHotspot.qml @@ -180,7 +180,7 @@ DccObject { page: RowLayout { Label { font: DccUtils.copyFont(D.DTK.fontManager.t5, { - "weight": 700 + "weight": 500 }) text: dccObj.displayName Layout.alignment: Qt.AlignLeft