Commit 03ff59ec authored by Lorenz Meier's avatar Lorenz Meier

Merge pull request #2883 from DonLakeFlyer/ValueSelect

Fix instrument panel value picker
parents 1b638340 2961eebc
...@@ -17,6 +17,10 @@ Item { ...@@ -17,6 +17,10 @@ Item {
property real _margins: ScreenTools.defaultFontPixelWidth / 2 property real _margins: ScreenTools.defaultFontPixelWidth / 2
function showPicker() {
valuesPage.showPicker()
}
ValuesWidget { ValuesWidget {
id: valuesPage id: valuesPage
width: _root.width width: _root.width
......
...@@ -29,6 +29,7 @@ This file is part of the QGROUNDCONTROL project ...@@ -29,6 +29,7 @@ This file is part of the QGROUNDCONTROL project
import QtQuick 2.4 import QtQuick 2.4
import QGroundControl 1.0
import QGroundControl.Controls 1.0 import QGroundControl.Controls 1.0
import QGroundControl.ScreenTools 1.0 import QGroundControl.ScreenTools 1.0
import QGroundControl.FactSystem 1.0 import QGroundControl.FactSystem 1.0
...@@ -87,6 +88,8 @@ Rectangle { ...@@ -87,6 +88,8 @@ Rectangle {
opacity: 0.5 opacity: 0.5
width: attitude.width * 0.15 width: attitude.width * 0.15
fillMode: Image.PreserveAspectFit fillMode: Image.PreserveAspectFit
visible: QGroundControl.multiVehicleManager.activeVehicle
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
hoverEnabled: true hoverEnabled: true
......
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