Browse Source

Merge pull request #7129 from DonLakeFlyer/Toolstrip

Toolstrip tweaks
QGC4.4
Don Gagne 6 years ago committed by GitHub
parent
commit
6193b0b1ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/FlightDisplay/FlightDisplayViewMap.qml
  2. 2
      src/QmlControls/ToolStrip.qml

2
src/FlightDisplay/FlightDisplayViewMap.qml

@ -408,7 +408,7 @@ FlightMap {
id: orbitCenterIndicator id: orbitCenterIndicator
anchorPoint.x: sourceItem.anchorPointX anchorPoint.x: sourceItem.anchorPointX
anchorPoint.y: sourceItem.anchorPointY anchorPoint.y: sourceItem.anchorPointY
coordinate: _activeVehicle ? _activeVehicle.orbitMapCircle.center : undefined coordinate: _activeVehicle ? _activeVehicle.orbitMapCircle.center : QtPositioning.coordinate()
visible: orbitTelemetryCircle.visible visible: orbitTelemetryCircle.visible
sourceItem: MissionItemIndexLabel { sourceItem: MissionItemIndexLabel {

2
src/QmlControls/ToolStrip.qml

@ -65,7 +65,7 @@ Rectangle {
QGCLabel { QGCLabel {
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
text: title text: title
font.pointSize: ScreenTools.smallFontPointSize font.pointSize: ScreenTools.mobile ? ScreenTools.smallFontPointSize : ScreenTools.defaultFontPointSize
} }
Rectangle { Rectangle {

Loading…
Cancel
Save