From f52a9ad0fe01079fe4598af6f0e8750b3c0da6d0 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 26 Sep 2022 10:25:42 +0200 Subject: [PATCH] Add missing return CURA-9663 --- cura/MachineAction.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cura/MachineAction.py b/cura/MachineAction.py index fa1fb01e02..eaddebec42 100644 --- a/cura/MachineAction.py +++ b/cura/MachineAction.py @@ -135,7 +135,6 @@ class MachineAction(QObject, PluginObject): :return: Defaults to true to be in line with the old behaviour. """ - return self._open_as_dialog @pyqtSlot() @@ -153,4 +152,4 @@ class MachineAction(QObject, PluginObject): :return: Defaults to true to be in line with the old behaviour. """ - self._visible \ No newline at end of file + return self._visible \ No newline at end of file