Commit 32825527 authored by olliw42's avatar olliw42

CameraManager: increase font size from small to default

parent 225d1d15
...@@ -68,18 +68,18 @@ Column { ...@@ -68,18 +68,18 @@ Column {
id: cameraLabel id: cameraLabel
text: _camera ? _camera.modelName : qsTr("Camera") text: _camera ? _camera.modelName : qsTr("Camera")
visible: _camera visible: _camera
font.pointSize: ScreenTools.smallFontPointSize font.pointSize: ScreenTools.defaultFontPointSize
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
} }
QGCLabel { QGCLabel {
text: _camera ? qsTr("Free Space: ") + _camera.storageFreeStr : "" text: _camera ? qsTr("Free Space: ") + _camera.storageFreeStr : ""
font.pointSize: ScreenTools.smallFontPointSize font.pointSize: ScreenTools.defaultFontPointSize
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
visible: _camera && _storageReady visible: _camera && _storageReady
} }
QGCLabel { QGCLabel {
text: _camera ? qsTr("Battery: ") + _camera.batteryRemainingStr : "" text: _camera ? qsTr("Battery: ") + _camera.batteryRemainingStr : ""
font.pointSize: ScreenTools.smallFontPointSize font.pointSize: ScreenTools.defaultFontPointSize
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
visible: _camera && _batteryReady visible: _camera && _batteryReady
} }
...@@ -186,13 +186,13 @@ Column { ...@@ -186,13 +186,13 @@ Column {
Item { width: 1; height: ScreenTools.defaultFontPixelHeight * 0.75; visible: _camera; } Item { width: 1; height: ScreenTools.defaultFontPixelHeight * 0.75; visible: _camera; }
QGCLabel { QGCLabel {
text: (_cameraVideoMode && _camera.videoStatus === QGCCameraControl.VIDEO_CAPTURE_STATUS_RUNNING) ? _camera.recordTimeStr : "00:00:00" text: (_cameraVideoMode && _camera.videoStatus === QGCCameraControl.VIDEO_CAPTURE_STATUS_RUNNING) ? _camera.recordTimeStr : "00:00:00"
font.pointSize: ScreenTools.smallFontPointSize font.pointSize: ScreenTools.defaultFontPointSize
visible: _cameraVideoMode visible: _cameraVideoMode
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
} }
QGCLabel { QGCLabel {
text: activeVehicle && _cameraPhotoMode ? ('00000' + activeVehicle.cameraTriggerPoints.count).slice(-5) : "00000" text: activeVehicle && _cameraPhotoMode ? ('00000' + activeVehicle.cameraTriggerPoints.count).slice(-5) : "00000"
font.pointSize: ScreenTools.smallFontPointSize font.pointSize: ScreenTools.defaultFontPointSize
visible: _cameraPhotoMode visible: _cameraPhotoMode
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment