ソースを参照

Fix: Crash in 4.4.0 that I didn't actually fix before

the sign was flipped and I am a real big dummy
Joseph Brandenburg 6 ヶ月 前
コミット
6aa206cf1f
1 ファイル変更2 行追加2 行削除
  1. 2 2
      base_definitions.py

+ 2 - 2
base_definitions.py

@@ -182,8 +182,8 @@ class MantisUINode:
             raise e
 
     def insert_link(self, link):
-        if (bpy.app.version < (4, 4, 0)):
-            return # this causes a crasah due to a bug.
+        if (bpy.app.version > (4, 4, 0)):
+            return # this causes a crash due to a bug.
         context = bpy.context
         if context.space_data:
             node_tree = context.space_data.path[0].node_tree