mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
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:
parent
5eeee37f0e
commit
37dc9e5dcb
2 changed files with 9 additions and 10 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue