Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Edwards <s.edwards@ultimaker.com>2017-01-10 15:35:39 +0300
committerSimon Edwards <s.edwards@ultimaker.com>2017-01-10 15:35:39 +0300
commita5181f157e27412eb5f1b80eccfe46efa642221d (patch)
tree43832f25d7aefbe34cce643d6096e0263d5ac957 /cura/MachineActionManager.py
parent958187eb5d93c2fabe2b7015e8c8316bab1d815c (diff)
Applied the profiler's pyqtSlot decorator to all of the code.
Diffstat (limited to 'cura/MachineActionManager.py')
-rw-r--r--cura/MachineActionManager.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cura/MachineActionManager.py b/cura/MachineActionManager.py
index 6061a2e49b..74b1d3bd08 100644
--- a/cura/MachineActionManager.py
+++ b/cura/MachineActionManager.py
@@ -6,7 +6,8 @@ from UM.PluginRegistry import PluginRegistry # So MachineAction can be added as
from UM.Settings.ContainerRegistry import ContainerRegistry
from UM.Settings.DefinitionContainer import DefinitionContainer
-from PyQt5.QtCore import QObject, pyqtSlot
+from PyQt5.QtCore import QObject
+from UM.FlameProfiler import pyqtSlot
## Raised when trying to add an unknown machine action as a required action
class UnknownMachineActionError(Exception):