Browse Source

Merge pull request #5560 from DonLakeFlyer/InstrumentWidgetAlternateSetup

Intrument Widget alternate control: Fix broken settings dialog display
QGC4.4
Don Gagne 8 years ago committed by GitHub
parent
commit
18371abe04
  1. 3
      src/FlightMap/Widgets/QGCInstrumentWidgetAlternate.qml

3
src/FlightMap/Widgets/QGCInstrumentWidgetAlternate.qml

@ -27,6 +27,7 @@ Rectangle { @@ -27,6 +27,7 @@ Rectangle {
border.width: 1
border.color: _isSatellite ? qgcPal.mapWidgetBorderLight : qgcPal.mapWidgetBorderDark
property var _qgcView: qgcView
property real _innerRadius: (width - (_topBottomMargin * 3)) / 4
property real _outerRadius: _innerRadius + _topBottomMargin
property real _defaultSize: ScreenTools.defaultFontPixelHeight * (9)
@ -94,7 +95,7 @@ Rectangle { @@ -94,7 +95,7 @@ Rectangle {
anchors.margins: 1
anchors.left: parent.left
anchors.right: parent.right
qgcView: root.qgcView
qgcView: root._qgcView
textColor: qgcPal.text
backgroundColor: qgcPal.window
maxHeight: _availableValueHeight

Loading…
Cancel
Save