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:
authorThomas Dinges <blender@dingto.org>2013-10-14 03:24:37 +0400
committerThomas Dinges <blender@dingto.org>2013-10-14 03:24:37 +0400
commitf79eff29849b667770b5c630ad6e44e8581a3297 (patch)
tree33edc092c223db02897c073e4f147c6795f991de /release/scripts/startup/bl_ui/properties_data_mesh.py
parent6e86760de2974483dbd4a2aa4ae8c6dc1dbdea66 (diff)
Interface / Template Lists:
* Reduce the space of more lists, should be all in bl_ui/
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_mesh.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_mesh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py
index b04d91b0fc9..e8d0bec6524 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -193,7 +193,7 @@ class DATA_PT_vertex_groups(MeshButtonsPanel, Panel):
rows = 1
if group:
- rows = 5
+ rows = 4
row = layout.row()
row.template_list("MESH_UL_vgroups", "", ob, "vertex_groups", ob.vertex_groups, "active_index", rows=rows)
@@ -252,7 +252,7 @@ class DATA_PT_shape_keys(MeshButtonsPanel, Panel):
rows = 1
if kb:
- rows = 5
+ rows = 4
row.template_list("MESH_UL_shape_keys", "", key, "key_blocks", ob, "active_shape_key_index", rows=rows)
col = row.column()