mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-18 06:21:40 +00:00
changed 'Query' to 'Include'
This commit is contained in:
@@ -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"},
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -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(
|
||||||
|
|||||||
Reference in New Issue
Block a user