mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-17 15:11:48 -06:00
Merge pull request #1337 from fieldOfView/fix_hide_profile_selection
Hide profiles selection when hiding settings
This commit is contained in:
commit
3e298c2d0e
2 changed files with 3 additions and 3 deletions
|
@ -271,7 +271,7 @@ Rectangle
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: headerSeparator
|
id: headerSeparator
|
||||||
width: parent.width
|
width: parent.width
|
||||||
visible: !monitoringPrint
|
visible: !monitoringPrint && !hideSettings
|
||||||
height: visible ? UM.Theme.getSize("sidebar_lining").height : 0
|
height: visible ? UM.Theme.getSize("sidebar_lining").height : 0
|
||||||
color: UM.Theme.getColor("sidebar_lining")
|
color: UM.Theme.getColor("sidebar_lining")
|
||||||
anchors.top: header.bottom
|
anchors.top: header.bottom
|
||||||
|
|
|
@ -164,7 +164,7 @@ Column
|
||||||
id: variantRow
|
id: variantRow
|
||||||
|
|
||||||
height: UM.Theme.getSize("sidebar_setup").height
|
height: UM.Theme.getSize("sidebar_setup").height
|
||||||
visible: (Cura.MachineManager.hasVariants || Cura.MachineManager.hasMaterials) && !sidebar.monitoringPrint
|
visible: (Cura.MachineManager.hasVariants || Cura.MachineManager.hasMaterials) && !sidebar.monitoringPrint && !sidebar.hideSettings
|
||||||
|
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
|
@ -261,7 +261,7 @@ Column
|
||||||
{
|
{
|
||||||
id: globalProfileRow
|
id: globalProfileRow
|
||||||
height: UM.Theme.getSize("sidebar_setup").height
|
height: UM.Theme.getSize("sidebar_setup").height
|
||||||
visible: !sidebar.monitoringPrint
|
visible: !sidebar.monitoringPrint && !sidebar.hideSettings
|
||||||
|
|
||||||
anchors
|
anchors
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue