Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into mb-testing
Browse files Browse the repository at this point in the history
  • Loading branch information
burtoogle committed Nov 6, 2021
2 parents e267449 + a613a70 commit c3c60ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cura/BuildVolume.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def updateNodeBoundaryCheck(self):
# Mark the node as outside build volume if the set extruder is disabled
extruder_position = node.callDecoration("getActiveExtruderPosition")
try:
if not self._global_container_stack.extruderList[int(extruder_position)].isEnabled:
if not self._global_container_stack.extruderList[int(extruder_position)].isEnabled and not node.callDecoration("isGroup"):
node.setOutsideBuildArea(True)
continue
except IndexError: # Happens when the extruder list is too short. We're not done building the printer in memory yet.
Expand Down
2 changes: 1 addition & 1 deletion cura/Settings/MachineManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1191,7 +1191,7 @@ def _setQualityChangesGroup(self, quality_changes_group: "QualityChangesGroup")

self.setIntentByCategory(quality_changes_group.intent_category)
self._reCalculateNumUserSettings()

self.correctExtruderSettings()
self.activeQualityGroupChanged.emit()
self.activeQualityChangesGroupChanged.emit()

Expand Down

0 comments on commit c3c60ac

Please sign in to comment.