Commit cc79fff0 authored by Don Gagne's avatar Don Gagne

Scrolling not going al the way to bottom

parent 69c7ebb5
...@@ -32,17 +32,19 @@ Rectangle { ...@@ -32,17 +32,19 @@ Rectangle {
color: qgcPal.window color: qgcPal.window
anchors.fill: parent anchors.fill: parent
readonly property real _margins: ScreenTools.defaultFontPixelHeight
QGCPalette { id: qgcPal; colorGroupEnabled: true } QGCPalette { id: qgcPal; colorGroupEnabled: true }
QGCFlickable { QGCFlickable {
anchors.fill: parent anchors.fill: parent
contentWidth: column.width contentWidth: column.width + (_margins * 2)
contentHeight: column.height contentHeight: column.height + (_margins * 2)
clip: true clip: true
Column { Column {
id: column id: column
anchors.margins: ScreenTools.defaultFontPixelHeight anchors.margins: _margins
anchors.left: parent.left anchors.left: parent.left
anchors.top: parent.top anchors.top: parent.top
spacing: ScreenTools.defaultFontPixelHeight spacing: ScreenTools.defaultFontPixelHeight
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment