UI: Remove colons in property names

This commit is contained in:
2020-09-18 15:40:09 -05:00
parent 104df2453a
commit f17302be6b

View File

@@ -373,7 +373,7 @@ class AlignObjects(Operator):
default=True, default=True,
) )
align_mode: EnumProperty( align_mode: EnumProperty(
name="Align Mode:", name="Align Mode",
description="Side of object to use for alignment", description="Side of object to use for alignment",
items=( items=(
('OPT_1', "Negative Sides", ""), ('OPT_1', "Negative Sides", ""),
@@ -383,7 +383,7 @@ class AlignObjects(Operator):
default='OPT_2', default='OPT_2',
) )
relative_to: EnumProperty( relative_to: EnumProperty(
name="Relative To:", name="Relative To",
description="Reference location to align to", description="Reference location to align to",
items=( items=(
('OPT_1', "Scene Origin", "Use the Scene Origin as the position for the selected objects to align to"), ('OPT_1', "Scene Origin", "Use the Scene Origin as the position for the selected objects to align to"),