mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 14:04:03 -06:00
Cleanup the qml a bit
CURA-6598
This commit is contained in:
parent
6b90975391
commit
9e5082a42f
1 changed files with 23 additions and 8 deletions
|
@ -84,29 +84,44 @@ Item
|
|||
}
|
||||
}
|
||||
|
||||
Item
|
||||
Column
|
||||
{
|
||||
anchors.left: titleRow.right
|
||||
anchors.right: parent.right
|
||||
anchors
|
||||
{
|
||||
left: titleRow.right
|
||||
right: parent.right
|
||||
}
|
||||
|
||||
spacing: UM.Theme.getSize("default_margin").height
|
||||
|
||||
Controls2.ButtonGroup
|
||||
{
|
||||
id: activeProfileButtonGroup
|
||||
exclusive: true
|
||||
onClicked: Cura.MachineManager.activeQualityGroup = button.identifier
|
||||
}
|
||||
|
||||
Cura.LabelBar
|
||||
{
|
||||
id: labelbar
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors
|
||||
{
|
||||
left: parent.left
|
||||
right: parent.right
|
||||
}
|
||||
|
||||
model: Cura.QualityProfilesDropDownMenuModel
|
||||
modelKey: "layer_height"
|
||||
}
|
||||
|
||||
Cura.RadioCheckbar
|
||||
{
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.top: labelbar.bottom
|
||||
anchors
|
||||
{
|
||||
left: parent.left
|
||||
right: parent.right
|
||||
}
|
||||
|
||||
model: Cura.QualityProfilesDropDownMenuModel
|
||||
buttonGroup: activeProfileButtonGroup
|
||||
modelKey: "quality_group"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue