mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Fix QML warnings
CURA-5772
This commit is contained in:
parent
2455961ac7
commit
553e29b9b8
4 changed files with 8 additions and 6 deletions
|
|
@ -159,7 +159,7 @@ UM.MainWindow
|
|||
}
|
||||
|
||||
height: 50
|
||||
source: UM.Controller.activeStage.stageMenuComponent
|
||||
source: UM.Controller.activeStage != null ? UM.Controller.activeStage.stageMenuComponent : ""
|
||||
}
|
||||
|
||||
Connections
|
||||
|
|
@ -252,13 +252,13 @@ UM.MainWindow
|
|||
|
||||
MouseArea
|
||||
{
|
||||
visible: UM.Controller.activeStage.mainComponent != ""
|
||||
visible: parent.source != ""
|
||||
anchors.fill: parent
|
||||
acceptedButtons: Qt.AllButtons
|
||||
onWheel: wheel.accepted = true
|
||||
}
|
||||
|
||||
source: UM.Controller.activeStage.mainComponent
|
||||
source: UM.Controller.activeStage != null ? UM.Controller.activeStage.mainComponent : ""
|
||||
}
|
||||
|
||||
UM.MessageStack
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue