ソースを参照

Fix: reset tree.is_executing after error

Joseph Brandenburg 9 ヶ月 前
コミット
855342c3fe
1 ファイル変更2 行追加0 行削除
  1. 2 0
      base_definitions.py

+ 2 - 0
base_definitions.py

@@ -64,6 +64,8 @@ class MantisTree(NodeTree):
             self.tree_valid = False
             self.is_executing = False
             raise e
+        finally:
+            self.is_executing = False
 
     
     def display_update(self, context):