ifcsverchok - fix missing socket tooltips

apparently `tooltip` property doesn't exist but `description` does
This commit is contained in:
Andrej730
2025-03-21 12:29:30 +05:00
parent 544b61b95a
commit a567af370b
2 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -29,9 +29,9 @@ class SvIfcCreateProject(bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helpe
def sv_init(self, context):
input_socket = self.inputs.new("SvStringsSocket", "file")
input_socket.tooltip = "ifc file to add the project to"
input_socket.description = "ifc file to add the project to"
input_socket = self.inputs.new("SvStringsSocket", "project_name")
input_socket.tooltip = "Project name"
input_socket.description = "Project name"
self.outputs.new("SvVerticesSocket", "file")
def draw_buttons(self, context, layout):