Merge pull request 'Remove settings from SettingsList' (#26) from settings-dive into master

Reviewed-on: #26
This commit is contained in:
erinn 2020-11-23 12:46:02 -08:00
commit d6b56d0278
1 changed files with 6 additions and 21 deletions

View File

@ -12,28 +12,13 @@ import "../opaque/styles"
import "../opaque/theme"
ColumnLayout { // settingsList
id: root
anchors.right: parent.right
anchors.left: parent.left
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.topMargin: 20
property alias settings: flick.children
Flickable {
anchors.fill: parent
id: flick
boundsBehavior: Flickable.StopAtBounds
clip:true
contentWidth: root.width
contentHeight: root.height
// Settings go here in a col
}
Flickable {
id: flick
boundsBehavior: Flickable.StopAtBounds
contentWidth: parent.width
clip:true
flickableDirection: Flickable.VerticalFlick
}