Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion qml/windowed/AppListView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,9 @@ FocusScope {
z: 1
}
font: DTK.fontManager.t8
palette.windowText: ListView.view.palette.brightText
ColorSelector.pressed: false
property Palette textColor: DStyle.Style.button.text
palette.windowText: ColorSelector.textColor
ToolTip.text: text
ToolTip.delay: 500
ToolTip.visible: hovered && contentItem.implicitWidth > contentItem.width
Expand Down
4 changes: 3 additions & 1 deletion qml/windowed/FreeSortListView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,9 @@ Item {
rightMargin: 10
}
font: DTK.fontManager.t8
palette.windowText: parent.palette.brightText
ColorSelector.pressed: false
property Palette textColor: DStyle.Style.button.text
palette.windowText: ColorSelector.textColor
visible: !Drag.active

ToolTip.text: text
Expand Down