Explorar el Código

Fix: get interface socket idname by wrong name

Joseph Brandenburg hace 1 mes
padre
commit
da61fc889f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      i_o.py

+ 1 - 1
i_o.py

@@ -522,7 +522,7 @@ def get_interface_data(tree, tree_in_out):
             if hasattr(sock, "interface_type"):
                 sock_data["socket_type"] = socket_class.interface_type.fget(socket_class)
             else:
-                sock_data["socket_type"] = sock.bl_idname
+                sock_data["socket_type"] = sock.bl_socket_idname
             tree_in_out[sock.identifier] = sock_data