From a7f28f67996fada77130ca7c3974ac81ec24406c Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Fri, 14 Jan 2022 13:06:22 -0800 Subject: [PATCH] Gz Signed-off-by: Louise Poubel --- src/gui/plugins/scene3d/GzScene3D.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/plugins/scene3d/GzScene3D.qml b/src/gui/plugins/scene3d/GzScene3D.qml index 1aadf5131a..6dea55f64e 100644 --- a/src/gui/plugins/scene3d/GzScene3D.qml +++ b/src/gui/plugins/scene3d/GzScene3D.qml @@ -40,7 +40,7 @@ Rectangle { anchors.fill: parent hoverEnabled: true acceptedButtons: Qt.NoButton - visible: Scene3D.loadingError.length == 0 + visible: GzScene3D.loadingError.length == 0 onEntered: { GzScene3D.OnFocusWindow() } @@ -53,7 +53,7 @@ Rectangle { id: renderWindow objectName: "renderWindow" anchors.fill: parent - visible: Scene3D.loadingError.length == 0 + visible: GzScene3D.loadingError.length == 0 /** * Message to be displayed over the render window @@ -127,8 +127,8 @@ Rectangle { Label { anchors.fill: parent anchors.margins: 10 - text: Scene3D.loadingError - visible: (Scene3D.loadingError.length > 0); + text: GzScene3D.loadingError + visible: (GzScene3D.loadingError.length > 0); wrapMode: Text.WordWrap } }