Browse Source

Clears warning when clearing Qml

QGC4.4
Don Gagne 10 years ago
parent
commit
9c0378458e
  1. 6
      src/ViewWidgets/CustomCommandWidget.qml

6
src/ViewWidgets/CustomCommandWidget.qml

@ -98,7 +98,11 @@ ViewWidget { @@ -98,7 +98,11 @@ ViewWidget {
QGCButton {
text: "Clear Qml file"
onClicked: controller.clearQmlFile()
onClicked: {
errorOutput.visible = false
controller.clearQmlFile()
}
}
}
}

Loading…
Cancel
Save