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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-07-11 14:41:26 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-07-11 14:41:26 +0400
commit74625c8d54cf19f4eac4a007cc2a8b3b56f621b2 (patch)
tree7443f3cf597ce6b11879a744c176713efd1229dc
parent6e6dd576a8a0ad902cc152bcac558659c27671e0 (diff)
Minor interface change: space between vertex group specials menu and up/down buttons
-rw-r--r--release/scripts/startup/bl_ui/properties_data_mesh.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py
index 7ca464ce055..4f3be914e66 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -151,6 +151,7 @@ class DATA_PT_vertex_groups(MeshButtonsPanel, Panel):
col.operator("object.vertex_group_remove", icon='ZOOMOUT', text="")
col.menu("MESH_MT_vertex_group_specials", icon='DOWNARROW_HLT', text="")
if group:
+ col.separator()
col.operator("object.vertex_group_move", icon='TRIA_UP', text="").direction = 'UP'
col.operator("object.vertex_group_move", icon='TRIA_DOWN', text="").direction = 'DOWN'