Fix QML warnings

This commit is contained in:
Lipu Fei 2020-01-07 10:57:29 +01:00
parent 045f4c51fa
commit 4f91389941
5 changed files with 26 additions and 8 deletions

View file

@ -88,7 +88,7 @@ Window
right: parent.right
}
textArea.text: manager.getExampleData()
textArea.text: (manager === null) ? "" : manager.getExampleData()
textArea.textFormat: Text.RichText
textArea.wrapMode: Text.Wrap
textArea.readOnly: true