changed 'Query' to 'Include'

This commit is contained in:
Ryan Schultz
2026-07-10 16:24:56 -05:00
parent 12ecdf2aba
commit 328ca6d387
2 changed files with 8 additions and 8 deletions
@@ -1360,10 +1360,10 @@ class LinkIfc(bpy.types.Operator, ImportHelper, tool.Ifc.Operator):
)
use_cache: bpy.props.BoolProperty(name="Use Cache", default=True)
query: bpy.props.StringProperty(
name="Query",
name="Include",
description=(
"Custom selector query to use to load element from a linked model. E.g. 'IfcElement'.\n\n"
"Default query - IfcElement, but excluding IfcProxy, IfcSpatialStructureElement, IfcSpatialElement, IfcFeatureElement."
"Selector query for the elements to load from the linked model. E.g. 'IfcElement'.\n\n"
"Default when empty - IfcElement, but excluding IfcProxy, IfcSpatialStructureElement, IfcSpatialElement, IfcFeatureElement."
),
)
exclude: bpy.props.StringProperty(
@@ -1713,10 +1713,10 @@ class ReloadLink(bpy.types.Operator, tool.Ifc.Operator):
options={"SKIP_SAVE"},
)
query: bpy.props.StringProperty(
name="Query",
name="Include",
description=(
"Custom selector query to use to load element from a linked model. E.g. 'IfcElement'.\n\n"
"Default query - IfcElement, but excluding IfcProxy, IfcSpatialStructureElement, IfcSpatialElement, IfcFeatureElement."
"Selector query for the elements to load from the linked model. E.g. 'IfcElement'.\n\n"
"Default when empty - IfcElement, but excluding IfcProxy, IfcSpatialStructureElement, IfcSpatialElement, IfcFeatureElement."
),
options={"SKIP_SAVE"},
)
+2 -2
View File
@@ -261,8 +261,8 @@ class Link(PropertyGroup):
default=0,
)
query: StringProperty(
name="Query",
description="Selector query used to filter elements when loading the linked model",
name="Include",
description="Selector query for the elements to load from the linked model",
default="",
)
exclude: StringProperty(