mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 21:13:58 -06:00
Added num user settings to workspace loading
CURA-1263
This commit is contained in:
parent
e69747577b
commit
2be773c9a3
3 changed files with 32 additions and 1 deletions
|
@ -168,7 +168,23 @@ UM.Dialog
|
|||
Row
|
||||
{
|
||||
width: parent.width
|
||||
height: childrenRect.height
|
||||
height: manager.numUserSettings != 0 ? childrenRect.height : 0
|
||||
Label
|
||||
{
|
||||
text: catalog.i18nc("@action:label", "Not in profile")
|
||||
width: parent.width / 3
|
||||
}
|
||||
Label
|
||||
{
|
||||
text: catalog.i18nc("@action:label", "%1 override(s)").arg(manager.numUserSettings)
|
||||
width: parent.width / 3
|
||||
}
|
||||
visible: manager.numUserSettings != 0
|
||||
}
|
||||
Row
|
||||
{
|
||||
width: parent.width
|
||||
height: manager.numSettingsOverridenByQualityChanges != 0 ? childrenRect.height : 0
|
||||
Label
|
||||
{
|
||||
text: catalog.i18nc("@action:label", "Derivative from")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue