Skip to content

Commit

Permalink
Merge branch 'main' into CURA-11031_only_start_services_when_required
Browse files Browse the repository at this point in the history
  • Loading branch information
jellespijker committed Sep 13, 2023
2 parents 9b51c6b + 70873ff commit 043fb3f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Popup
},
{
displayName: catalog.i18nc("@label:button", "Print jobs"),
thumbnail: UM.Theme.getIcon("FoodBeverages"),
thumbnail: UM.Theme.getIcon("Nozzle"),
description: catalog.i18nc("@tooltip:button", "Monitor print jobs and reprint from your print history."),
link: "https://digitalfactory.ultimaker.com/app/print-jobs?utm_source=cura&utm_medium=software&utm_campaign=switcher-digital-factory-printjobs",
permissionsRequired: ["digital-factory.print-job.read"]
Expand Down
3 changes: 0 additions & 3 deletions resources/themes/cura-light/icons/default/FoodBeverages.svg

This file was deleted.

4 changes: 4 additions & 0 deletions resources/themes/cura-light/icons/default/Nozzle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions resources/themes/cura-light/icons/deprecated_icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -398,5 +398,9 @@
"viewmode": {
"new_icon": "Eye",
"size": "default"
},
"FoodBeverages": {
"new_icon": "Nozzle",
"size": "default"
}
}
2 changes: 1 addition & 1 deletion tests/Machines/TestMaterialNode.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def getInstanceContainerSideEffect(*args, **kwargs):
def container_registry():
result = MagicMock()
result.findInstanceContainersMetadata = MagicMock(side_effect=getInstanceContainerSideEffect)
result.findContainersMetadata = MagicMock(return_value = [{"base_file": "material_1", "material": "test_material_type", "GUID": "omg zomg"}])
result.findContainersMetadata = MagicMock(return_value = [{"base_file": "material_1", "material": "test_material_type", "GUID": "omg zomg", "brand": "test_brand"}])
return result


Expand Down

0 comments on commit 043fb3f

Please sign in to comment.