From 9e24426b1a58aae30c81e8b804e4b04b6a5edc36 Mon Sep 17 00:00:00 2001 From: Wang Zichong Date: Tue, 27 Jan 2026 17:16:55 +0800 Subject: [PATCH] fix: lower default font size for tray action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 默认托盘区域的 tooltip 文字大小比托盘插件里的文字大小要大,因为字号 是t6,根据设计建议应当调整到t8. 另注: 应用区域的 tooltip (也包括启动器,全局搜索图标) 使用的是相同 控件,都会使用同一字号,已确认此行为无误. PMS: BUG-326409 Log: --- frame/qml/PanelToolTip.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frame/qml/PanelToolTip.qml b/frame/qml/PanelToolTip.qml index 215aa8117..75481c107 100644 --- a/frame/qml/PanelToolTip.qml +++ b/frame/qml/PanelToolTip.qml @@ -93,8 +93,8 @@ Item { anchors.centerIn: parent parent: toolTipWindow ? toolTipWindow.contentItem : undefined font { - family: DTK.fontManager.t6.family - pixelSize: DTK.fontManager.t6.pixelSize + family: DTK.fontManager.t8.family + pixelSize: DTK.fontManager.t8.pixelSize capitalization: Font.Capitalize } contentItem: Text {