mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Merge branch 'feature_lsit_themes' of https://github.com/fieldOfView/Cura into fieldOfView-feature_lsit_themes
This commit is contained in:
commit
9acaef8ecc
2 changed files with 8 additions and 1 deletions
|
@ -219,7 +219,11 @@ UM.PreferencesPage
|
|||
id: themeList
|
||||
|
||||
Component.onCompleted: {
|
||||
append({ text: catalog.i18nc("@item:inlistbox", "Ultimaker"), code: "cura" })
|
||||
var themes = UM.Theme.getThemes()
|
||||
for (var i = 0; i < themes.length; i++)
|
||||
{
|
||||
append({ text: themes[i].name.toString(), code: themes[i].id.toString() });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"metadata": {
|
||||
"name": "Ultimaker"
|
||||
},
|
||||
"fonts": {
|
||||
"large": {
|
||||
"size": 1.25,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue