Browse Source

ToolStrip.qml: Fix Flickable height, it was bigger than panel

QGC4.4
davidsastresas 2 years ago committed by David Sastre
parent
commit
a07c4c257d
  1. 2
      src/QmlControls/ToolStrip.qml

2
src/QmlControls/ToolStrip.qml

@ -52,7 +52,7 @@ Rectangle { @@ -52,7 +52,7 @@ Rectangle {
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
height: parent.height
height: parent.height - anchors.margins * 2
contentHeight: toolStripColumn.height
flickableDirection: Flickable.VerticalFlick
clip: true

Loading…
Cancel
Save