Commit 5d2503d5 authored by Don Gagne's avatar Don Gagne

Hide dynamic links

parent 3e421835
...@@ -61,12 +61,13 @@ Rectangle { ...@@ -61,12 +61,13 @@ Rectangle {
spacing: ScreenTools.defaultFontPixelHeight / 2 spacing: ScreenTools.defaultFontPixelHeight / 2
Repeater { Repeater {
model: QGroundControl.linkManager.linkConfigurations model: QGroundControl.linkManager.linkConfigurations
delegate: delegate: QGCButton {
QGCButton { anchors.horizontalCenter: settingsColumn.horizontalCenter
text: object.name width: _linkRoot.width * 0.5
width: _linkRoot.width * 0.5 text: object.name
exclusiveGroup: linkGroup exclusiveGroup: linkGroup
anchors.horizontalCenter: settingsColumn.horizontalCenter visible: !object.dynamic
onClicked: { onClicked: {
checked = true checked = true
_currentSelection = object _currentSelection = object
......
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