Update UI layering and MachineSelector properties in 3MFReader

The z-index property of combobox and Loader elements in WorkspaceSection.qml was adjusted to ensure proper layering.

CURA-11700
This commit is contained in:
Saumya Jain 2024-03-18 14:47:24 +01:00
parent 5eeee37f0e
commit 37dc9e5dcb
2 changed files with 9 additions and 10 deletions

View file

@ -15,7 +15,11 @@ Item
property Component content: Item { visible: false }
property alias comboboxTitle: comboboxLabel.text
property Component combobox: Item { visible: false }
property Component combobox: Item
{
z: -1
visible: false
}
property string comboboxTooltipText: ""
property bool comboboxVisible: false
@ -91,11 +95,11 @@ Item
}
}
Loader
{
width: parent.width
height: content.height
z: -1
anchors.top: sectionTitleRow.bottom
sourceComponent: content
}