Make running scripts list scrollable with scroll bar

This commit is contained in:
David Rowe 2016-01-19 20:25:16 +13:00
parent 29945bba92
commit 9393735478

View file

@ -111,8 +111,7 @@ Window {
Button { text: "Stop all"; onClicked: stopAll() }
}
ListView {
clip: true
ScrollView {
anchors {
top: allButtons.bottom;
left: parent.left;
@ -122,6 +121,10 @@ Window {
bottomMargin: 8
}
ListView {
clip: true
anchors { fill: parent; margins: 0 }
model: runningScriptsModel
delegate: Rectangle {
@ -159,7 +162,7 @@ Window {
}
}
}
}
Text {
id: loadLabel