mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Remove vestigial references to "monitoringPrint"
This commit is contained in:
parent
87293e089d
commit
19b8ca7c70
3 changed files with 7 additions and 9 deletions
|
@ -44,8 +44,6 @@ Item
|
|||
return Qt.point(0,0)
|
||||
}
|
||||
|
||||
visible: parent != null ? !parent.parent.monitoringPrint: true
|
||||
|
||||
Rectangle {
|
||||
id: layerViewMenu
|
||||
anchors.right: parent.right
|
||||
|
|
|
@ -25,7 +25,7 @@ Item
|
|||
{
|
||||
id: globalProfileRow
|
||||
height: UM.Theme.getSize("sidebar_setup").height
|
||||
visible: !sidebar.monitoringPrint && !sidebar.hideSettings
|
||||
visible: !sidebar.hideSettings
|
||||
|
||||
anchors
|
||||
{
|
||||
|
|
|
@ -54,7 +54,7 @@ Column
|
|||
{
|
||||
id: printerTypeSelectionRow
|
||||
height: UM.Theme.getSize("sidebar_setup").height
|
||||
visible: printerConnected && hasManyPrinterTypes && !sidebar.monitoringPrint && !sidebar.hideSettings
|
||||
visible: printerConnected && hasManyPrinterTypes && !sidebar.hideSettings
|
||||
|
||||
anchors
|
||||
{
|
||||
|
@ -104,7 +104,7 @@ Column
|
|||
id: extruderSelectionRow
|
||||
width: parent.width
|
||||
height: Math.round(UM.Theme.getSize("sidebar_tabs").height * 2 / 3)
|
||||
visible: machineExtruderCount.properties.value > 1 && !sidebar.monitoringPrint
|
||||
visible: machineExtruderCount.properties.value > 1
|
||||
|
||||
anchors
|
||||
{
|
||||
|
@ -356,7 +356,7 @@ Column
|
|||
{
|
||||
id: materialRow
|
||||
height: UM.Theme.getSize("sidebar_setup").height
|
||||
visible: Cura.MachineManager.hasMaterials && !sidebar.monitoringPrint && !sidebar.hideSettings
|
||||
visible: Cura.MachineManager.hasMaterials && !sidebar.hideSettings
|
||||
|
||||
anchors
|
||||
{
|
||||
|
@ -418,7 +418,7 @@ Column
|
|||
{
|
||||
id: variantRow
|
||||
height: UM.Theme.getSize("sidebar_setup").height
|
||||
visible: Cura.MachineManager.hasVariants && !sidebar.monitoringPrint && !sidebar.hideSettings
|
||||
visible: Cura.MachineManager.hasVariants && !sidebar.hideSettings
|
||||
|
||||
anchors
|
||||
{
|
||||
|
@ -473,7 +473,7 @@ Column
|
|||
id: buildplateRow
|
||||
height: UM.Theme.getSize("sidebar_setup").height
|
||||
// TODO Temporary hidden, add back again when feature ready
|
||||
visible: false //Cura.MachineManager.hasVariantBuildplates && !sidebar.monitoringPrint && !sidebar.hideSettings
|
||||
visible: false //Cura.MachineManager.hasVariantBuildplates && !sidebar.hideSettings
|
||||
|
||||
anchors
|
||||
{
|
||||
|
@ -519,7 +519,7 @@ Column
|
|||
{
|
||||
id: materialInfoRow
|
||||
height: Math.round(UM.Theme.getSize("sidebar_setup").height / 2)
|
||||
visible: (Cura.MachineManager.hasVariants || Cura.MachineManager.hasMaterials || Cura.MachineManager.hasVariantBuildplates) && !sidebar.monitoringPrint && !sidebar.hideSettings
|
||||
visible: (Cura.MachineManager.hasVariants || Cura.MachineManager.hasMaterials || Cura.MachineManager.hasVariantBuildplates) && !sidebar.hideSettings
|
||||
|
||||
anchors
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue