瀏覽代碼

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