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) use_cache: bpy.props.BoolProperty(name="Use Cache", default=True)
query: bpy.props.StringProperty( query: bpy.props.StringProperty(
name="Query", name="Include",
description=( description=(
"Custom selector query to use to load element from a linked model. E.g. 'IfcElement'.\n\n" "Selector query for the elements to load from the linked model. E.g. 'IfcElement'.\n\n"
"Default query - IfcElement, but excluding IfcProxy, IfcSpatialStructureElement, IfcSpatialElement, IfcFeatureElement." "Default when empty - IfcElement, but excluding IfcProxy, IfcSpatialStructureElement, IfcSpatialElement, IfcFeatureElement."
), ),
) )
exclude: bpy.props.StringProperty( exclude: bpy.props.StringProperty(
@@ -1713,10 +1713,10 @@ class ReloadLink(bpy.types.Operator, tool.Ifc.Operator):
options={"SKIP_SAVE"}, options={"SKIP_SAVE"},
) )
query: bpy.props.StringProperty( query: bpy.props.StringProperty(
name="Query", name="Include",
description=( description=(
"Custom selector query to use to load element from a linked model. E.g. 'IfcElement'.\n\n" "Selector query for the elements to load from the linked model. E.g. 'IfcElement'.\n\n"
"Default query - IfcElement, but excluding IfcProxy, IfcSpatialStructureElement, IfcSpatialElement, IfcFeatureElement." "Default when empty - IfcElement, but excluding IfcProxy, IfcSpatialStructureElement, IfcSpatialElement, IfcFeatureElement."
), ),
options={"SKIP_SAVE"}, options={"SKIP_SAVE"},
) )
+2 -2
View File
@@ -261,8 +261,8 @@ class Link(PropertyGroup):
default=0, default=0,
) )
query: StringProperty( query: StringProperty(
name="Query", name="Include",
description="Selector query used to filter elements when loading the linked model", description="Selector query for the elements to load from the linked model",
default="", default="",
) )
exclude: StringProperty( exclude: StringProperty(