Merge branch '2.4' of github.com:Ultimaker/Cura into 2.4

This commit is contained in:
Jaime van Kessel 2016-12-19 10:21:29 +01:00
commit 9fe0ccac23
4 changed files with 25 additions and 45 deletions

View file

@ -182,7 +182,7 @@ UM.Dialog
}
Label
{
text: catalog.i18nc("@action:label", "%1 override(s)").arg(Cura.MachineManager.numUserSettings)
text: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", Cura.MachineManager.numUserSettings).arg(Cura.MachineManager.numUserSettings)
width: parent.width / 3
}
visible: Cura.MachineManager.numUserSettings
@ -203,37 +203,6 @@ UM.Dialog
}
}
/*Item // Spacer
{
height: spacerHeight
width: height
}
Label
{
text: catalog.i18nc("@action:label", "Material settings")
font.bold: true
}
Repeater
{
model: Cura.MachineManager.activeMaterialNames
delegate: Row
{
width: parent.width
height: childrenRect.height
Label
{
text: catalog.i18nc("@action:label", "Name")
width: parent.width / 3
}
Label
{
text: modelData
width: parent.width / 3
}
}
}*/
Item // Spacer
{