lena_pi/LenaPi/PlayerControlPannel.qml
Anika Raemer d251120275 don't show folders that do not contain subfolders or audio files
hopefuly this will fix crash on RasPi
2018-12-25 20:15:41 +01:00

32 lines
674 B
QML

import QtQuick 2.0
Rectangle {
id: container
property var model
property int margins
color: "#99ffffff"
height: 140
MediaProgress{
id: progress
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
anchors.margins: container.margins
model: container.model
// might require height for labels to be shown on RasPi (Qt 5.10)
}
PlayerButtons{
id: buttons
anchors.left: parent.left
anchors.right: parent.right
anchors.top: progress.bottom
anchors.bottom: parent.bottom
model: container.model
spacing: 20
}
}