fixing the scroll view

This commit is contained in:
Sam Gateau 2019-06-12 22:42:05 -07:00
parent fbab3fcde9
commit b132a42e89
2 changed files with 6 additions and 8 deletions

View file

@ -26,8 +26,9 @@ Rectangle {
color: global.color color: global.color
ScrollView { ScrollView {
id: control id: scrollView
anchors.fill: parent anchors.fill: parent
contentWidth: parent.width
clip: true clip: true
Column { Column {

View file

@ -24,9 +24,12 @@ Rectangle {
color: global.colorBack color: global.colorBack
ScrollView { ScrollView {
id: scrollView
anchors.fill: parent anchors.fill: parent
contentWidth: parent.width
clip: true clip: true
Column {
Column {
anchors.left: parent.left anchors.left: parent.left
anchors.right: parent.right anchors.right: parent.right
@ -35,8 +38,6 @@ Rectangle {
isUnfold: true isUnfold: true
panelFrameData: Component { panelFrameData: Component {
PerformanceSettings { PerformanceSettings {
anchors.left: parent.left
anchors.right: parent.right
} }
} }
} }
@ -45,8 +46,6 @@ Rectangle {
isUnfold: true isUnfold: true
panelFrameData: Component { panelFrameData: Component {
RenderSettings { RenderSettings {
anchors.left: parent.left
anchors.right: parent.right
} }
} }
} }
@ -54,8 +53,6 @@ Rectangle {
label: "Platform" label: "Platform"
panelFrameData: Component { panelFrameData: Component {
Platform { Platform {
anchors.left: parent.left
anchors.right: parent.right
} }
} }
} }