Commit 95bbc54f authored by Don Gagne's avatar Don Gagne

Fix for missing qgcView

parent deb7f923
......@@ -23,7 +23,7 @@ QGCTextField {
inputMethodHints: Qt.ImhFormattedNumbersOnly
onEditingFinished: {
if (qgcView) {
if (typeof qgcView !== 'undefined' && qgcView) {
var errorString = fact.validate(text, false /* convertOnly */)
if (errorString == "") {
fact.value = text
......
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