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>2012-09-22 02:33:43 +0400
committerThomas Dinges <blender@dingto.org>2012-09-22 02:33:43 +0400
commit22e0ffa05b15e407a7c317975861d0666b702d9a (patch)
treec442bfe97b80680e398155eb891c9351ebf80cbc /release
parent537c3375b5ccfbdef52dd3c048dc077cb22cfd75 (diff)
Added back "mesh.customdata_clear_skin"... followup for r50802
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_mesh.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py
index 3af35209d7d..6125540d491 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -325,7 +325,7 @@ class DATA_PT_customdata(MeshButtonsPanel, Panel):
layout = self.layout
# me = context.mesh
- col = layout.column(align=True)
+ col = layout.column()
# sticky has no UI access since 2.49 - we may remove
'''
row = col.row(align=True)
@@ -333,6 +333,7 @@ class DATA_PT_customdata(MeshButtonsPanel, Panel):
row.operator("mesh.customdata_clear_sticky", icon='X')
'''
col.operator("mesh.customdata_clear_mask", icon='X')
+ col.operator("mesh.customdata_clear_skin", icon='X')
class DATA_PT_custom_props_mesh(MeshButtonsPanel, PropertyPanel, Panel):