From 8135d8ddc7a8e6c8851300abf97c886e0e473002 Mon Sep 17 00:00:00 2001 From: olliw42 Date: Wed, 30 Oct 2019 18:10:05 +0100 Subject: [PATCH] CameraManager: bug in CameraPageWudget.gml, stream variable not defined, also avoids a gray spurios window --- src/FlightMap/Widgets/CameraPageWidget.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/FlightMap/Widgets/CameraPageWidget.qml b/src/FlightMap/Widgets/CameraPageWidget.qml index 916dca306..f2212cc4b 100644 --- a/src/FlightMap/Widgets/CameraPageWidget.qml +++ b/src/FlightMap/Widgets/CameraPageWidget.qml @@ -42,6 +42,7 @@ Column { property real _labelFieldWidth: ScreenTools.defaultFontPixelWidth * 30 property real _editFieldWidth: ScreenTools.defaultFontPixelWidth * 30 property bool _communicationLost: activeVehicle ? activeVehicle.connectionLost : false + property bool _streamingEnabled: false //TODO: determine what it should be, VideoPageWidget.qml does QGroundControl.settingsManager.videoSettings.streamConfigured property bool _hasModes: _camera && _camera && _camera.hasModes property bool _videoRecording: _camera && _camera.videoStatus === QGCCameraControl.VIDEO_CAPTURE_STATUS_RUNNING property bool _storageReady: _camera && _camera.storageStatus === QGCCameraControl.STORAGE_READY -- 2.22.0