Project load dialog now also gives information about the quality & quality changes

CURA-1263
This commit is contained in:
Jaime van Kessel 2016-12-02 13:01:01 +01:00
parent 6bb1b7ec80
commit b3f1f6b4db
3 changed files with 62 additions and 4 deletions

View file

@ -130,12 +130,12 @@ UM.Dialog
height: childrenRect.height
Label
{
text: catalog.i18nc("@action:label", "Type")
text: catalog.i18nc("@action:label", "Name")
width: parent.width / 3
}
Label
{
text: catalog.i18nc("@action:label", "TOCHANGE")
text: manager.qualityName
width: parent.width / 3
}
@ -159,6 +159,22 @@ UM.Dialog
}
}
}
Row
{
width: parent.width
height: childrenRect.height
Label
{
text: catalog.i18nc("@action:label", "Derivative from")
width: parent.width / 3
}
Label
{
text: catalog.i18nc("@action:label", "%1, %2 overrides" ).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges)
width: parent.width / 3
}
visible: manager.numSettingsOverridenByQualityChanges != 0
}
Label
{