UI: Don't use colons at the end of property labels

This was a 2.7x design, now with property split we omit the colon.
This commit is contained in:
Aaron Carlisle 2021-10-24 16:21:22 -04:00
parent 8f1284ab78
commit 348b5f98f0
1 changed files with 8 additions and 8 deletions

View File

@ -56,7 +56,7 @@ class Prefs(bpy.types.KeyConfigPreferences):
update=update_fn,
)
tool_key_mode: EnumProperty(
name="Tool Keys:",
name="Tool Keys",
description=(
"The method of keys to activate tools such as move, rotate & scale (G, R, S)"
),
@ -242,13 +242,13 @@ class Prefs(bpy.types.KeyConfigPreferences):
# General settings.
col = layout.column()
col.row().prop(self, "select_mouse", text="Select with Mouse Button:", expand=True)
col.row().prop(self, "spacebar_action", text="Spacebar Action:", expand=True)
col.row().prop(self, "select_mouse", text="Select with Mouse Button", expand=True)
col.row().prop(self, "spacebar_action", text="Spacebar Action", expand=True)
if is_select_left:
col.row().prop(self, "gizmo_action", text="Activate Gizmo Event:", expand=True)
col.row().prop(self, "gizmo_action", text="Activate Gizmo Event", expand=True)
else:
col.row().prop(self, "rmb_action", text="Right Mouse Select Action:", expand=True)
col.row().prop(self, "rmb_action", text="Right Mouse Select Action", expand=True)
col.row().prop(self, "tool_key_mode", expand=True)
@ -271,9 +271,9 @@ class Prefs(bpy.types.KeyConfigPreferences):
# 3DView settings.
col = layout.column()
col.label(text="3D View")
col.row().prop(self, "v3d_tilde_action", text="Grave Accent / Tilde Action:", expand=True)
col.row().prop(self, "v3d_mmb_action", text="Middle Mouse Action:", expand=True)
col.row().prop(self, "v3d_alt_mmb_drag_action", text="Alt Middle Mouse Drag Action:", expand=True)
col.row().prop(self, "v3d_tilde_action", text="Grave Accent / Tilde Action", expand=True)
col.row().prop(self, "v3d_mmb_action", text="Middle Mouse Action", expand=True)
col.row().prop(self, "v3d_alt_mmb_drag_action", text="Alt Middle Mouse Drag Action", expand=True)
# Checkboxes sub-layout.
col = layout.column()