From 2dc87fa621a3f19bfa101768827aeec2cc92b511 Mon Sep 17 00:00:00 2001 From: zhaofangxun Date: Tue, 2 Jun 2026 15:21:24 +0800 Subject: [PATCH] fix: set title font to t6 specification MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Add font property to DialogWindow title label using D.DTK.fontManager.t6 to dynamically adapt the title to the current system font size Log: Set DialogWindow title font to t6 for dynamic system font size adaptation fix: 设置标题字体为 t6 规范 1. 为 DialogWindow 标题标签添加 D.DTK.fontManager.t6 字体属性, 使标题实时适配当前系统字号大小 Log: 设置 DialogWindow 标题字体为 t6 以实时适配系统字号大小 PMS: BUG-363185 --- qt6/src/qml/DialogWindow.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/qt6/src/qml/DialogWindow.qml b/qt6/src/qml/DialogWindow.qml index 709558b6..5e5b899e 100644 --- a/qt6/src/qml/DialogWindow.qml +++ b/qt6/src/qml/DialogWindow.qml @@ -74,6 +74,7 @@ Window { text: control.title elide: Text.ElideRight horizontalAlignment: Text.AlignHCenter + font: D.DTK.fontManager.t6 } } }