diff --git a/res/skins/QMLDemo/DeckRow.qml b/res/skins/QMLDemo/DeckRow.qml index 16ceb8c8a518..748980b5f519 100644 --- a/res/skins/QMLDemo/DeckRow.qml +++ b/res/skins/QMLDemo/DeckRow.qml @@ -16,6 +16,20 @@ Item { anchors.fill: parent Layout.margins: 0 + Rectangle { + Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter + implicitWidth: 50 + implicitHeight: 50 + Layout.margins: 5 + color: "#121213" + + Image { + anchors.fill: parent + source: leftDeckPlayer.coverArtUrl + } + + } + Rectangle { color: root.leftDeckPlayer.color Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter @@ -241,6 +255,20 @@ Item { } + Rectangle { + Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter + implicitWidth: 50 + implicitHeight: 50 + Layout.margins: 5 + color: "#121213" + + Image { + anchors.fill: parent + source: rightDeckPlayer.coverArtUrl + } + + } + } }