Browse Source

Merge pull request #7024 from mavlink/gstDebug

Don't show GStreamer debug options if it is set to not visible
QGC4.4
Gus Grubba 7 years ago committed by GitHub
parent
commit
2647da4120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/QmlControls/AppMessages.qml

2
src/QmlControls/AppMessages.qml

@ -162,6 +162,7 @@ QGCView { @@ -162,6 +162,7 @@ QGCView {
anchors.right: gstCombo.left
anchors.rightMargin: ScreenTools.defaultFontPixelWidth
text: qsTr("GStreamer Debug Level:")
visible: QGroundControl.settingsManager.appSettings.gstDebugLevel.visible
}
FactComboBox {
@ -172,6 +173,7 @@ QGCView { @@ -172,6 +173,7 @@ QGCView {
width: ScreenTools.defaultFontPixelWidth*20
model: ["disabled", "1", "2", "3", "4", "5", "6", "7", "8"]
fact: QGroundControl.settingsManager.appSettings.gstDebugLevel
visible: QGroundControl.settingsManager.appSettings.gstDebugLevel.visible
}
BusyIndicator {

Loading…
Cancel
Save