mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Fix random crash on windows OS on boot up
This commit is contained in:
parent
234a8115b9
commit
7a72708217
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class PrintOrderManager(QObject):
|
|||
is_enabled = stack and \
|
||||
stack.getProperty("print_sequence", "value") == "one_at_a_time" and \
|
||||
stack.getProperty("user_defined_print_order_enabled", "value")
|
||||
return is_enabled
|
||||
return bool(is_enabled)
|
||||
|
||||
@staticmethod
|
||||
def initializePrintOrders(nodes: List[CuraSceneNode]) -> None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue