Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLipu Fei <lipu.fei815@gmail.com>2020-01-07 12:57:29 +0300
committerLipu Fei <lipu.fei815@gmail.com>2020-01-07 13:37:37 +0300
commit4f91389941edb2a8f1f797c463fb1b0caf10dc05 (patch)
treecfb5366447d6bbb3605a3c5e212d2d3a24d1f0e2 /plugins/SliceInfoPlugin
parent045f4c51fa06c6c3ee2bdebc7ad1620cf4d41254 (diff)
Fix QML warnings
Diffstat (limited to 'plugins/SliceInfoPlugin')
-rw-r--r--plugins/SliceInfoPlugin/MoreInfoWindow.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SliceInfoPlugin/MoreInfoWindow.qml b/plugins/SliceInfoPlugin/MoreInfoWindow.qml
index 50276ec25c..247df4b025 100644
--- a/plugins/SliceInfoPlugin/MoreInfoWindow.qml
+++ b/plugins/SliceInfoPlugin/MoreInfoWindow.qml
@@ -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