Skip to content

Commit e131bda

Browse files
wjyrichBLumia
authored andcommitted
fix: Apply the list module text color and hover effect adjustments
update when hovered, app palette from 70% to 100% pms-bug-314399
1 parent 114ce34 commit e131bda

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

qml/windowed/AppListView.qml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,9 @@ FocusScope {
239239
z: 1
240240
}
241241
font: DTK.fontManager.t8
242-
palette.windowText: ListView.view.palette.brightText
242+
ColorSelector.pressed: false
243+
property Palette textColor: DStyle.Style.button.text
244+
palette.windowText: ColorSelector.textColor
243245
ToolTip.text: text
244246
ToolTip.delay: 500
245247
ToolTip.visible: hovered && contentItem.implicitWidth > contentItem.width

qml/windowed/FreeSortListView.qml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,9 @@ Item {
260260
rightMargin: 10
261261
}
262262
font: DTK.fontManager.t8
263-
palette.windowText: parent.palette.brightText
263+
ColorSelector.pressed: false
264+
property Palette textColor: DStyle.Style.button.text
265+
palette.windowText: ColorSelector.textColor
264266
visible: !Drag.active
265267

266268
ToolTip.text: text

0 commit comments

Comments
 (0)