Fixed some leftover graphical issues

CURA-5943
This commit is contained in:
Jaime van Kessel 2018-11-30 14:10:42 +01:00
parent 48bdb735f2
commit 59a81be65c
2 changed files with 21 additions and 2 deletions

View file

@ -22,6 +22,25 @@ Component
{
anchors.fill: parent
}
Rectangle
{
id: footerSeparator
width: parent.width
height: UM.Theme.getSize("wide_lining").height
color: UM.Theme.getColor("wide_lining")
anchors.bottom: monitorButton.top
anchors.bottomMargin: UM.Theme.getSize("thick_margin").height
}
// MonitorButton is actually the bottom footer panel.
Cura.MonitorButton
{
id: monitorButton
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
}
}
}
}