CURA-4870 Prepare the UI to show the list of configurations

This commit is contained in:
Diego Prado Gesto 2018-03-04 17:26:37 +01:00
parent 6e35fc5035
commit 49fcf35d9b
9 changed files with 113 additions and 100 deletions

View file

@ -11,7 +11,7 @@ Rectangle
{
id: configurationItem
property var printer: null
property var configuration: null
signal configurationSelected()
height: childrenRect.height
@ -26,7 +26,7 @@ Rectangle
Label
{
text: printer.name
text: configuration.printerType
}
Row
@ -41,7 +41,7 @@ Rectangle
Repeater
{
height: childrenRect.height
model: printer.extruders
model: configuration.extruderConfigurations
delegate: PrintCoreConfiguration
{
printCoreConfiguration: modelData
@ -55,7 +55,7 @@ Rectangle
//
// Label
// {
// text: printer.name + "-" + printer.type
// text: configuration.buildplateConfiguration
// }
// }
}