formatting
This commit is contained in:
parent
d633a25ebe
commit
a83f4f2161
1 changed files with 6 additions and 2 deletions
|
@ -203,13 +203,17 @@ Item {
|
|||
supportsMouseEvents: false
|
||||
backgroundColor: Kirigami.Theme.backgroundColor;
|
||||
Binding on backgroundColor {
|
||||
when: songDragHandler.containsMouse || (songSelectionModel.hasSelection && songSelectionModel.isSelected(songProxyModel.idx(index)))
|
||||
when: songDragHandler.containsMouse ||
|
||||
(songSelectionModel.hasSelection &&
|
||||
songSelectionModel.isSelected(songProxyModel.idx(index)))
|
||||
value: Kirigami.Theme.highlightColor
|
||||
}
|
||||
|
||||
textColor: Kirigami.Theme.textColor;
|
||||
Binding on textColor {
|
||||
when: songDragHandler.containsMouse || (songSelectionModel.hasSelection && songSelectionModel.isSelected(songProxyModel.idx(index)))
|
||||
when: songDragHandler.containsMouse ||
|
||||
(songSelectionModel.hasSelection &&
|
||||
songSelectionModel.isSelected(songProxyModel.idx(index)))
|
||||
value: Kirigami.Theme.highlightedTextColor
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue