Remove redundant rows from POS QML

CuRA-6683
This commit is contained in:
Nino van Hooff 2019-09-13 11:06:11 +02:00
parent 184a72f7ab
commit 90fefac37f

View File

@ -124,10 +124,6 @@ Item
} }
Row // Selected mesh type label
{
spacing: UM.Theme.getSize("default_margin").width
Label Label
{ {
id: meshTypeLabel id: meshTypeLabel
@ -137,13 +133,6 @@ Item
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
} }
}
Row // Infill-only checkbox (visible for overhang mesh button)
{
spacing: UM.Theme.getSize("default_margin").width
CheckBox CheckBox
{ {
id: infillOnlyCheckbox id: infillOnlyCheckbox
@ -156,11 +145,6 @@ Item
visible: current_mesh_type === infill_mesh_type || current_mesh_type === cutting_mesh_type visible: current_mesh_type === infill_mesh_type || current_mesh_type === cutting_mesh_type
onClicked: setOverhangsMeshType() onClicked: setOverhangsMeshType()
} }
}
Row
{
spacing: UM.Theme.getSize("default_margin").width
Button Button
{ {
@ -204,7 +188,6 @@ Item
} }
} }
} }
}
} }