From e3379a169b14d3858c17702e7761b9bcafbca43d Mon Sep 17 00:00:00 2001 From: Philippe Renon Date: Wed, 13 Apr 2016 23:02:21 +0200 Subject: [PATCH] LP-29 inverse PFD opaque handling (was wrong) --- ground/gcs/src/share/qml/pfd/Info.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ground/gcs/src/share/qml/pfd/Info.qml b/ground/gcs/src/share/qml/pfd/Info.qml index d95992d24..827d2e039 100644 --- a/ground/gcs/src/share/qml/pfd/Info.qml +++ b/ground/gcs/src/share/qml/pfd/Info.qml @@ -62,7 +62,7 @@ Item { sceneSize: info.sceneSize elementName: "info-bg" width: parent.width - opacity: opaque ? 0.3 : 1 + opacity: opaque ? 1 : 0.3 } // @@ -452,7 +452,7 @@ Item { x: Math.floor(scaledBounds.x * sceneItem.width) y: Math.floor(scaledBounds.y * sceneItem.height) - opacity: opaque ? 0.6 : 1 + opacity: opaque ? 1 : 0.6 states: State { name: "fading"