mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 06:33:55 -06:00
Add detailed documentation for _correctPrintSequence function
CURA-7827
This commit is contained in:
parent
2ccdd11098
commit
07453e101e
1 changed files with 7 additions and 1 deletions
|
@ -859,7 +859,13 @@ class MachineManager(QObject):
|
|||
caution_message.show()
|
||||
|
||||
def _correctPrintSequence(self) -> None:
|
||||
"""Resets the Print Sequence setting when there are more than one enabled extruders."""
|
||||
"""
|
||||
Sets the Print Sequence setting to "all-at-once" when there are more than one enabled extruders.
|
||||
|
||||
This setting has to be explicitly changed whenever we have more than one enabled extruders to make sure that the
|
||||
Cura UI is properly updated to reset all the UI elements changes that occur due to the one-at-a-time mode (such
|
||||
as the reduced build volume, the different convex hulls of the objects etc.).
|
||||
"""
|
||||
|
||||
setting_key = "print_sequence"
|
||||
new_value = "all_at_once"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue