mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 14:55:03 -06:00
Small fixes (mostly QML warnings and the like).
done as part of CURA-9422
This commit is contained in:
parent
4ea437ba28
commit
afeec473f6
4 changed files with 4 additions and 6 deletions
|
@ -68,11 +68,11 @@ Button
|
|||
top: buttonText.top
|
||||
bottom: buttonText.bottom
|
||||
}
|
||||
visible: model.isAbstractMachine
|
||||
visible: model.isAbstractMachine ? model.isAbstractMachine : false
|
||||
|
||||
UM.Label
|
||||
{
|
||||
text: model.machineCount
|
||||
text: model.machineCount ? model.machineCount : ""
|
||||
anchors.centerIn: parent
|
||||
font: UM.Theme.getFont("default_bold")
|
||||
}
|
||||
|
|
|
@ -223,7 +223,6 @@ Cura.ExpandablePopup
|
|||
id: buttonRow
|
||||
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue