Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-07-10 10:56:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-10 10:56:57 +0300
commit1b559438888be03fde1edab7f7811522c448f15c (patch)
tree899f5f29ee0626560d6b5f8822a89572db5c0e4b /release/scripts
parent10b976d2eb8a5de24c19bbb469005d59c6cd7c17 (diff)
UI: add colon to prefs headings
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py8
1 files changed, 4 insertions, 4 deletions
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()