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:
authorJonathan Williamson <jonathan@cgcookie.com>2014-01-04 01:02:24 +0400
committerJonathan Williamson <jonathan@cgcookie.com>2014-01-04 01:28:19 +0400
commitbf3a4acffcf5828142e198d1846d335306f28c85 (patch)
tree0f6d5dc29c05002543aeb4bc63db0a3045f2a52b /release
parent0641bb11179edad6e15928e5dfd59b932739538b (diff)
Fix formatting on section names in the Relations tab.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index c2966b9f0f8..9d52b159c2f 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -162,7 +162,7 @@ class VIEW3D_PT_tools_relations(View3DPanel, Panel):
col = layout.column(align=True)
- col.label(text="Objects")
+ col.label(text="Objects:")
col.operator("group.create")
col.operator("group.objects_add_active")
col.operator("group.objects_remove")
@@ -172,7 +172,7 @@ class VIEW3D_PT_tools_relations(View3DPanel, Panel):
col.separator()
- col.label(text="Object Data")
+ col.label(text="Object Data:")
col.operator("object.make_links_data")
col.operator("object.make_single_user")