diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index d69219c7b1..0aafbd82c7 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -1437,8 +1437,8 @@ class MachineManager(QObject): # Show human-readable extruder names such as "Extruder Left", "Extruder Front" instead of "Extruder 1, 2, 3". extruder_names = [] - for position in sorted(disabled_used_extruder_position_set): - extruder_stack = self._global_container_stack.extruders[str(position)] + for extruder_position in sorted(disabled_used_extruder_position_set): + extruder_stack = self._global_container_stack.extruders[str(extruder_position)] extruder_name = extruder_stack.definition.getName() extruder_names.append(extruder_name) extruders_str = ", ".join(extruder_names) diff --git a/plugins/PreviewStage/PreviewMain.qml b/plugins/PreviewStage/PreviewMain.qml index 1600df6d4f..6b5ce2436b 100644 --- a/plugins/PreviewStage/PreviewMain.qml +++ b/plugins/PreviewStage/PreviewMain.qml @@ -14,6 +14,7 @@ Item Loader { id: previewMain + anchors.fill: parent source: UM.Controller.activeView != null && UM.Controller.activeView.mainComponent != null ? UM.Controller.activeView.mainComponent : "" } diff --git a/resources/qml/Menus/SettingsMenu.qml b/resources/qml/Menus/SettingsMenu.qml index 4ea3a4d71a..03367a47e4 100644 --- a/resources/qml/Menus/SettingsMenu.qml +++ b/resources/qml/Menus/SettingsMenu.qml @@ -33,7 +33,7 @@ Menu MenuItem { text: catalog.i18nc("@action:inmenu", "Set as Active Extruder") - onTriggered: Cura.MachineManager.setExtruderIndex(model.index) + onTriggered: Cura.ExtruderManager.setActiveExtruderIndex(model.index) } MenuItem diff --git a/resources/themes/cura-light/icons/sign_in_to_cloud.svg b/resources/themes/cura-light/icons/sign_in_to_cloud.svg index 75abb176c2..5c8f39a85b 100644 --- a/resources/themes/cura-light/icons/sign_in_to_cloud.svg +++ b/resources/themes/cura-light/icons/sign_in_to_cloud.svg @@ -1,34 +1,25 @@ - - - Group-cloud + + + Group 2 Created with Sketch. - - - - + + + + - + - - - - - - - - - - - - + - - - + + + + + diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index 34ca84ea6f..573fe8bcfa 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -562,6 +562,7 @@ "message_close": [1, 1], "message_radius": [0.25, 0.25], "message_action_button": [0, 2.0], + "message_image": [15.0, 5.0], "infill_button_margin": [0.5, 0.5],