[Bf-blender-cvs] [348b5f98f0b] master: UI: Don't use colons at the end of property labels

Aaron Carlisle noreply at git.blender.org
Mon Oct 25 23:23:50 CEST 2021


Commit: 348b5f98f0b63bc8993bde7cf3b5bf5c24c609b2
Author: Aaron Carlisle
Date:   Sun Oct 24 16:21:22 2021 -0400
Branches: master
https://developer.blender.org/rB348b5f98f0b63bc8993bde7cf3b5bf5c24c609b2

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.

===================================================================

M	release/scripts/presets/keyconfig/Blender.py

===================================================================

diff --git a/release/scripts/presets/keyconfig/Blender.py b/release/scripts/presets/keyconfig/Blender.py
index 1852e150589..35c920b3f40 100644
--- a/release/scripts/presets/keyconfig/Blender.py
+++ b/release/scripts/presets/keyconfig/Blender.py
@@ -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()



More information about the Bf-blender-cvs mailing list