mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 02:17:11 +02:00
Make running scripts list scrollable with scroll bar
This commit is contained in:
parent
29945bba92
commit
9393735478
1 changed files with 33 additions and 30 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue