Commit 950ee021 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #4931 from DonLakeFlyer/PlanUploadAnimation

Figured out better animation for Upload button
parents 0487ffc3 2a2f4085
......@@ -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
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment