diff --git a/src/FlightMap/Widgets/CameraPageWidget.qml b/src/FlightMap/Widgets/CameraPageWidget.qml index fe6a50b5cdecfae1e455cb11706696f3a253e18c..02b259b91e9e499c49a44a3efcb1bd0b140b0298 100644 --- a/src/FlightMap/Widgets/CameraPageWidget.qml +++ b/src/FlightMap/Widgets/CameraPageWidget.qml @@ -68,18 +68,18 @@ Column { id: cameraLabel text: _camera ? _camera.modelName : qsTr("Camera") visible: _camera - font.pointSize: ScreenTools.smallFontPointSize + font.pointSize: ScreenTools.defaultFontPointSize anchors.horizontalCenter: parent.horizontalCenter } QGCLabel { text: _camera ? qsTr("Free Space: ") + _camera.storageFreeStr : "" - font.pointSize: ScreenTools.smallFontPointSize + font.pointSize: ScreenTools.defaultFontPointSize anchors.horizontalCenter: parent.horizontalCenter visible: _camera && _storageReady } QGCLabel { text: _camera ? qsTr("Battery: ") + _camera.batteryRemainingStr : "" - font.pointSize: ScreenTools.smallFontPointSize + font.pointSize: ScreenTools.defaultFontPointSize anchors.horizontalCenter: parent.horizontalCenter visible: _camera && _batteryReady } @@ -186,13 +186,13 @@ Column { Item { width: 1; height: ScreenTools.defaultFontPixelHeight * 0.75; visible: _camera; } QGCLabel { text: (_cameraVideoMode && _camera.videoStatus === QGCCameraControl.VIDEO_CAPTURE_STATUS_RUNNING) ? _camera.recordTimeStr : "00:00:00" - font.pointSize: ScreenTools.smallFontPointSize + font.pointSize: ScreenTools.defaultFontPointSize visible: _cameraVideoMode anchors.horizontalCenter: parent.horizontalCenter } QGCLabel { text: activeVehicle && _cameraPhotoMode ? ('00000' + activeVehicle.cameraTriggerPoints.count).slice(-5) : "00000" - font.pointSize: ScreenTools.smallFontPointSize + font.pointSize: ScreenTools.defaultFontPointSize visible: _cameraPhotoMode anchors.horizontalCenter: parent.horizontalCenter }