Merge pull request #10338 from Ultimaker/CURA-8496_Fix_arrow_overlapping_with_material_name

CURA-8496: Account for the width of the arrow in the Extruders row
This commit is contained in:
Jaime van Kessel 2021-08-26 13:30:33 +02:00 committed by GitHub
commit e5a2c612f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,10 @@ Cura.ExpandablePopup
// Horizontal list that shows the extruders and their materials
RowLayout
{
anchors.fill: parent
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: parent.left
width: parent.width - UM.Theme.getSize("standard_arrow").width
visible: Cura.MachineManager.activeMachine ? Cura.MachineManager.activeMachine.hasMaterials : false
Repeater
{