fix: 任务栏 ↑↓ 箭头颜色跟随字体颜色设置

- 横向/竖向布局共 4 处箭头 Text 的 color 从 root.secondaryText
  改为 root.speedTextColor,与网速数值统一受 textColor 属性控制
- 弹窗详情的标签色(secondaryText)保持不变,不受字体颜色设置影响
This commit is contained in:
2026-07-20 21:30:42 +08:00
parent 22900737b0
commit f7157e15e8
+4 -4
View File
@@ -158,7 +158,7 @@ AppletItem {
Text {
text: "↓"
font.pixelSize: root.dockSize * 0.20
color: root.secondaryText
color: root.speedTextColor
Layout.alignment: Qt.AlignVCenter
}
@@ -179,7 +179,7 @@ AppletItem {
Text {
text: "↑"
font.pixelSize: root.dockSize * 0.20
color: root.secondaryText
color: root.speedTextColor
Layout.alignment: Qt.AlignVCenter
}
@@ -212,7 +212,7 @@ AppletItem {
Text {
text: "↓"
font.pixelSize: root.dockSize * 0.20
color: root.secondaryText
color: root.speedTextColor
anchors.horizontalCenter: parent.horizontalCenter
}
@@ -239,7 +239,7 @@ AppletItem {
Text {
text: "↑"
font.pixelSize: root.dockSize * 0.20
color: root.secondaryText
color: root.speedTextColor
anchors.horizontalCenter: parent.horizontalCenter
}