Commit c92cd774 authored by Gus Grubba's avatar Gus Grubba

Merge pull request #3284 from tcanabrava/fixFactTextField_2

Fix fact text field 2
parents 74d30cd4 232a18f8
......@@ -58,6 +58,7 @@ QGCViewDialog {
}
fact.value = value;
fact.valueChanged(fact.value)
hideDialog();
}
else */ if (factCombo.visible) {
fact.enumIndex = factCombo.currentIndex
......@@ -152,10 +153,11 @@ QGCViewDialog {
Column {
spacing: ScreenTools.defaultFontPixelHeight / 2
visible: fact.bitmaskStrings.length > 0 ? true : false;
Repeater {
id: bitmaskEditor
model: fact.bitmaskStrings
delegate : QGCCheckBox {
text : modelData
checked : fact.value & fact.bitmaskValues[index]
......
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