Commit 80cdf96e authored by Lorenz Meier's avatar Lorenz Meier

Do not grey out the RC symbol in case of known signal loss

parent 8602fd21
...@@ -213,7 +213,7 @@ Row { ...@@ -213,7 +213,7 @@ Row {
sourceSize.height: height sourceSize.height: height
source: "/qmlimages/RC.svg" source: "/qmlimages/RC.svg"
fillMode: Image.PreserveAspectFit fillMode: Image.PreserveAspectFit
opacity: activeVehicle ? (((activeVehicle.rcRSSI < 1) || (activeVehicle.rcRSSI > 100)) ? 0.5 : 1) : 0.5 opacity: activeVehicle ? (((activeVehicle.rcRSSI < 0) || (activeVehicle.rcRSSI > 100)) ? 0.5 : 1) : 0.5
color: qgcPal.buttonText color: qgcPal.buttonText
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
} }
......
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