[Bf-blender-cvs] [1b559438888] blender2.8: UI: add colon to prefs headings

Campbell Barton noreply at git.blender.org
Tue Jul 10 09:57:57 CEST 2018


Commit: 1b559438888be03fde1edab7f7811522c448f15c
Author: Campbell Barton
Date:   Tue Jul 10 09:56:57 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB1b559438888be03fde1edab7f7811522c448f15c

UI: add colon to prefs headings

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

M	release/scripts/startup/bl_ui/space_userpref.py

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

diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 8d560ff8815..e44fd6e09db 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -267,7 +267,7 @@ class USERPREF_PT_interface(Panel):
 
         col.separator()
 
-        col.label("Development")
+        col.label("Development:")
         col.prop(view, "show_tooltips_python")
         col.prop(view, "show_developer_ui")
 
@@ -326,7 +326,7 @@ class USERPREF_PT_interface(Panel):
 
         col.prop(view, "show_splash")
 
-        col.label("Warnings")
+        col.label("Warnings:")
         col.prop(view, "use_quit_dialog")
 
         col.separator()
@@ -526,13 +526,13 @@ class USERPREF_PT_system(Panel):
         col.prop(system, "use_16bit_textures")
 
         col.separator()
-        col.label(text="Selection")
+        col.label(text="Selection:")
         col.prop(system, "select_method", text="")
         col.prop(system, "use_select_pick_depth")
 
         col.separator()
 
-        col.label(text="Anisotropic Filtering")
+        col.label(text="Anisotropic Filtering:")
         col.prop(system, "anisotropic_filter", text="")
 
         col.separator()



More information about the Bf-blender-cvs mailing list