From 2a2f4085b2c71478ee1cfcc58ddfed2cf0925632 Mon Sep 17 00:00:00 2001 From: DonLakeFlyer Date: Thu, 6 Apr 2017 11:30:33 -0700 Subject: [PATCH] Figured out better animation for Upload button --- src/PlanView/PlanToolBar.qml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/PlanView/PlanToolBar.qml b/src/PlanView/PlanToolBar.qml index b339b88db..261ace7bf 100644 --- a/src/PlanView/PlanToolBar.qml +++ b/src/PlanView/PlanToolBar.qml @@ -247,6 +247,16 @@ Rectangle { enabled: _activeVehicle visible: _manualUpload onClicked: missionController.upload() + + PropertyAnimation on opacity { + easing.type: Easing.OutQuart + from: 0.5 + to: 1 + loops: Animation.Infinite + running: missionController ? missionController.dirty : false + alwaysRunToEnd: true + duration: 2000 + } } } -- 2.22.0