Merge pull request #1243 from fieldOfView/feature_material_cost

Implement material cost
This commit is contained in:
Ghostkeeper 2017-01-24 15:54:57 +01:00 committed by GitHub
commit a8efde9450
6 changed files with 242 additions and 54 deletions

View file

@ -129,6 +129,19 @@ UM.PreferencesPage
currentIndex -= 1;
}
}
Label
{
id: currencyLabel
text: catalog.i18nc("@label","Currency:")
anchors.verticalCenter: languageComboBox.verticalCenter
}
TextField
{
id: currencyField
text: UM.Preferences.getValue("cura/currency")
onTextChanged: UM.Preferences.setValue("cura/currency", text)
}
}
Label