mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 15:13:56 -06:00
Fix typing
Discovered during work on CURA-6793.
This commit is contained in:
parent
17ce0f5eb1
commit
44a59a7f3b
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ class MachineManager(QObject):
|
||||||
if not containers:
|
if not containers:
|
||||||
return
|
return
|
||||||
|
|
||||||
global_stack = containers[0]
|
global_stack = cast(GlobalStack, containers[0])
|
||||||
|
|
||||||
# Make sure that the default machine actions for this machine have been added
|
# Make sure that the default machine actions for this machine have been added
|
||||||
self._application.getMachineActionManager().addDefaultMachineActions(global_stack)
|
self._application.getMachineActionManager().addDefaultMachineActions(global_stack)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue