Skip to content

Commit

Permalink
Use correct fixed width font
Browse files Browse the repository at this point in the history
  • Loading branch information
DonLakeFlyer committed Sep 19, 2024
1 parent bb08731 commit 433a0d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/PlanView/TerrainStatus.qml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Rectangle {
min: 0
max: _unitsConversion.metersToAppSettingsHorizontalDistanceUnits(missionController.missionDistance)
lineVisible: true
labelsFont.family: "Fixed"
labelsFont.family: ScreenTools.fixedFontFamily
labelsFont.pointSize: ScreenTools.smallFontPointSize
labelsColor: "white"
tickCount: 5
Expand All @@ -89,7 +89,7 @@ Rectangle {
min: _unitsConversion.metersToAppSettingsVerticalDistanceUnits(_minAMSLAltitude)
max: _unitsConversion.metersToAppSettingsVerticalDistanceUnits(_maxAMSLAltitude)
lineVisible: true
labelsFont.family: "Fixed"
labelsFont.family: ScreenTools.fixedFontFamily
labelsFont.pointSize: ScreenTools.smallFontPointSize
labelsColor: "white"
tickCount: 4
Expand Down
4 changes: 2 additions & 2 deletions src/QmlControls/MAVLinkChart.qml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ ChartView {
format: "<br/>mm:ss.zzz"
tickCount: 5
gridVisible: true
labelsFont.family: "Fixed"
labelsFont.family: ScreenTools.fixedFontFamily
labelsFont.pointSize: ScreenTools.smallFontPointSize
labelsColor: qgcPal.text
}
Expand All @@ -67,7 +67,7 @@ ChartView {
max: chartController ? chartController.rangeYMax : 0
visible: chartController !== null
lineVisible: false
labelsFont.family: "Fixed"
labelsFont.family: ScreenTools.fixedFontFamily
labelsFont.pointSize: ScreenTools.smallFontPointSize
labelsColor: qgcPal.text
}
Expand Down

0 comments on commit 433a0d2

Please sign in to comment.