diff --git a/SettingsList.qml b/SettingsList.qml index f40e999..1b8f98d 100644 --- a/SettingsList.qml +++ b/SettingsList.qml @@ -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 }