mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-20 15:08:51 +00:00
minor fix, sets a minimum to 'count'
This commit is contained in:
@@ -252,7 +252,7 @@ class BIMArrayProperties(PropertyGroup):
|
|||||||
is_editing: bpy.props.IntProperty(
|
is_editing: bpy.props.IntProperty(
|
||||||
default=-1, description="Currently edited array index. -1 if not in array editing mode."
|
default=-1, description="Currently edited array index. -1 if not in array editing mode."
|
||||||
)
|
)
|
||||||
count: bpy.props.IntProperty(name="Count", default=0)
|
count: bpy.props.IntProperty(name="Count", default=0, min=0)
|
||||||
x: bpy.props.FloatProperty(name="X", default=0)
|
x: bpy.props.FloatProperty(name="X", default=0)
|
||||||
y: bpy.props.FloatProperty(name="Y", default=0)
|
y: bpy.props.FloatProperty(name="Y", default=0)
|
||||||
z: bpy.props.FloatProperty(name="Z", default=0)
|
z: bpy.props.FloatProperty(name="Z", default=0)
|
||||||
|
|||||||
Reference in New Issue
Block a user