Skip to content
Snippets Groups Projects
Commit 0874bcfb authored by ya zou's avatar ya zou
Browse files

Activefocus effects needs to be used with selected

Solves the problem of wrong display of the selected state when
pressing and holding the CTRL key to select multiple items in
the play list and canceling multiple items.
parent ac14138a
No related branches found
Tags 0.2.83
No related merge requests found
......@@ -47,7 +47,7 @@ Rectangle {
}
color: {
if ((activeFocus && listView.mode !== PlaylistListView.Mode.Select) || (hovered && selected))
if ((selected && activeFocus && listView.mode !== PlaylistListView.Mode.Select) || (hovered && selected))
colors.plItemFocused
else if (hovered)
colors.plItemHovered
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment