mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
CURA-4870 Prepare the UI to show the list of configurations
This commit is contained in:
parent
6e35fc5035
commit
49fcf35d9b
9 changed files with 113 additions and 100 deletions
|
|
@ -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
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue