From 328255278b765e909f07a7541450f4dc6f99db97 Mon Sep 17 00:00:00 2001 From: olliw42 Date: Wed, 30 Oct 2019 08:57:39 +0100 Subject: [PATCH] CameraManager: increase font size from small to default --- src/FlightMap/Widgets/CameraPageWidget.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/FlightMap/Widgets/CameraPageWidget.qml b/src/FlightMap/Widgets/CameraPageWidget.qml index fe6a50b5c..02b259b91 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 } -- 2.22.0