From c2ec2240339d2d973646bbfc1d79024611ab7c6b Mon Sep 17 00:00:00 2001 From: electricface Date: Thu, 5 Feb 2026 21:46:54 +0800 Subject: [PATCH] fix: The font size of the category jump menu does not adjust with the system font size when sorting by category MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fix: 按分类排序时,分类跳转菜单字体大小不随系统字体大小调整而改变问题 Log: 修复按分类排序时,分类跳转菜单字体大小不随系统字体大小调整而改变问题 Influence: 启动器分类跳转菜单文字大小 PMS: BUG-335169 --- qml/windowed/AppListView.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qml/windowed/AppListView.qml b/qml/windowed/AppListView.qml index 4b975fa5..7f917fe7 100644 --- a/qml/windowed/AppListView.qml +++ b/qml/windowed/AppListView.qml @@ -270,6 +270,7 @@ FocusScope { id: menuItem text: getCategoryName(modelData) textColor: DStyle.Style.menu.itemText + font: DTK.fontManager.t6 onTriggered: { scrollToDDECategory(modelData) } @@ -277,6 +278,7 @@ FocusScope { alignment: Qt.AlignCenter text: menuItem.text color: parent.palette.windowText + font: menuItem.font } background: BoxPanel { anchors.left: parent.left