Browse Source

Add flickable

QGC4.4
Don Gagne 7 years ago
parent
commit
067c19fe0f
  1. 9
      src/QmlControls/QGCViewMessage.qml

9
src/QmlControls/QGCViewMessage.qml

@ -20,9 +20,16 @@ import QGroundControl.Palette 1.0 @@ -20,9 +20,16 @@ import QGroundControl.Palette 1.0
QGCViewDialog {
property string message
QGCLabel {
QGCFlickable {
anchors.fill: parent
contentHeight: label.contentHeight
QGCLabel {
id: label
anchors.left: parent.left
anchors.right: parent.right
wrapMode: Text.WordWrap
text: message
}
}
}

Loading…
Cancel
Save