bim.select_clash_source - hide internal props from user

to avoid confusion
This commit is contained in:
Andrej730
2025-05-21 16:21:50 +05:00
parent d48406006f
commit 99782a2813
@@ -156,8 +156,8 @@ class SelectClashSource(bpy.types.Operator, ImportHelper):
bl_options = {"REGISTER", "UNDO"}
bl_description = "Select an IFC file to add as a clash source"
filter_glob: bpy.props.StringProperty(default="*.ifc", options={"HIDDEN"})
index: bpy.props.IntProperty()
group: bpy.props.StringProperty()
index: bpy.props.IntProperty(options={"HIDDEN"})
group: bpy.props.StringProperty(options={"HIDDEN"})
filename_ext = ".ifc"
def execute(self, context):