From a228095dbc329bc7fb1cba40b5bf10c11eecfe6b Mon Sep 17 00:00:00 2001 From: DonLakeFlyer Date: Fri, 19 Jun 2020 13:35:02 -0700 Subject: [PATCH] Fix blank PlanView due to bad connection --- src/PlanView/PlanToolBarIndicators.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PlanView/PlanToolBarIndicators.qml b/src/PlanView/PlanToolBarIndicators.qml index a1ee030..0cdb63b 100644 --- a/src/PlanView/PlanToolBarIndicators.qml +++ b/src/PlanView/PlanToolBarIndicators.qml @@ -72,7 +72,7 @@ Item { // Progress bar Connections { - target: _controllerValid ? _planMasterController.missionController : undefined + target: _controllerValid ? _planMasterController.missionController : null onProgressPctChanged: { if (_controllerProgressPct === 1) { missionStats.visible = false