Skip to content

Commit

Permalink
Gz
Browse files Browse the repository at this point in the history
Signed-off-by: Louise Poubel <[email protected]>
  • Loading branch information
chapulina committed Jan 14, 2022
1 parent ef45e69 commit a7f28f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gui/plugins/scene3d/GzScene3D.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand All @@ -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
Expand Down Expand Up @@ -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
}
}

0 comments on commit a7f28f6

Please sign in to comment.