1
0
Fork 0

Scrollbar for launcher settings

This commit is contained in:
James Turner 2018-05-09 19:35:24 +01:00
parent b6f7f17c5c
commit 57a866fc60

View file

@ -32,9 +32,11 @@ Item {
}
Flickable {
id: settingsFlick
contentHeight: sectionColumn.childrenRect.height
flickableDirection: Flickable.VerticalFlick
anchors.fill: parent
height: parent.height
width: parent.width - scrollbar.width
Column
{
@ -472,4 +474,12 @@ Item {
}
} // of Column
} // of Flickable
Scrollbar {
id: scrollbar
anchors.right: parent.right
height: settingsFlick.height
flickable: settingsFlick
visible: settingsFlick.contentHeight > settingsFlick.height
}
}