From a83f4f2161de5759824f8ac568eb724f0728728b Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 24 Feb 2023 14:53:48 -0600 Subject: [PATCH] formatting --- src/qml/presenter/Library.qml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/qml/presenter/Library.qml b/src/qml/presenter/Library.qml index 84a2840..f2f0ac4 100644 --- a/src/qml/presenter/Library.qml +++ b/src/qml/presenter/Library.qml @@ -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 }