Added extruder icon

CL-894
This commit is contained in:
Jaime van Kessel 2018-08-16 16:24:14 +02:00
parent 5bee561c9c
commit 01b9ba03d4
3 changed files with 29 additions and 12 deletions

View file

@ -110,7 +110,7 @@ Item
{
popup.visible ? popup.close() : popup.open()
}
Button
{
id: contextButton
@ -191,22 +191,14 @@ Item
PrintCoreConfiguration
{
id: leftExtruderInfo
width: Math.round((parent.width - extruderSeperator.width) / 2)
width: Math.round(parent.width / 2)
printCoreConfiguration: printJob.configuration.extruderConfigurations[0]
}
Rectangle
{
id: extruderSeperator
width: UM.Theme.getSize("default_lining").width
height: parent.height
color: lineColor
}
PrintCoreConfiguration
{
id: rightExtruderInfo
width: Math.round((parent.width - extruderSeperator.width) / 2)
width: Math.round(parent.width / 2)
printCoreConfiguration: printJob.configuration.extruderConfigurations[1]
}
}