Cleanup the qml a bit

CURA-6598
This commit is contained in:
Jaime van Kessel 2019-07-29 17:00:02 +02:00
parent 6b90975391
commit 9e5082a42f

View file

@ -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"