Commit 55f26894 authored by jaxxzer's avatar jaxxzer

Move manual parameter entry under advanced settings

parent cea599b9
......@@ -83,17 +83,6 @@ QGCViewDialog {
anchors.left: parent.left
anchors.right: parent.right
// Checkbox to allow manual entry of enumerated or bitmask parameters
QGCCheckBox {
id: manualEntry
visible: factCombo.visible || bitmaskColumn.visible
text: qsTr("Manual Entry (Advanced User)")
onClicked: {
valueField.text = fact.valueString
}
}
QGCLabel {
id: validationError
width: parent.width
......@@ -234,7 +223,7 @@ QGCViewDialog {
Row {
width: parent.width
spacing: ScreenTools.defaultFontPixelWidth / 2
visible: showRCToParam
visible: showRCToParam || factCombo.visible || bitmaskColumn.visible
Rectangle {
height: 1
......@@ -256,6 +245,17 @@ QGCViewDialog {
}
}
// Checkbox to allow manual entry of enumerated or bitmask parameters
QGCCheckBox {
id: manualEntry
visible: _advanced.checked && (factCombo.visible || bitmaskColumn.visible)
text: qsTr("Manual Entry")
onClicked: {
valueField.text = fact.valueString
}
}
QGCButton {
text: qsTr("Set RC to Param...")
width: _editFieldWidth
......
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