CURA-4870 Add mock-up for the printer type dropdown selector.

Add mock-up for the configuration selection.
This commit is contained in:
Diego Prado Gesto 2018-02-27 17:10:19 +01:00
parent 6fca1f1589
commit ac635ba748
4 changed files with 221 additions and 1 deletions

View file

@ -87,10 +87,20 @@ Rectangle
MachineSelection {
id: machineSelection
width: base.width
width: base.width - configSelection.width
height: UM.Theme.getSize("sidebar_header").height
anchors.top: base.top
anchors.left: parent.left
}
ConfigurationSelection {
id: configSelection
visible: printerConnected && !sidebar.monitoringPrint && !sidebar.hideSettings
width: visible ? Math.round(base.width * 0.25) : 0
height: UM.Theme.getSize("sidebar_header").height
anchors.top: base.top
anchors.right: parent.right
panelWidth: base.width
}
SidebarHeader {