From fd44038ed754f58ddfe48228bfb5fa41ea367e65 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 21 Sep 2012 10:40:48 +0000 Subject: [PATCH] remove sticky buttons from the UI, this functionality may be removed and has had no UI access since 2.49 --- release/scripts/startup/bl_ui/properties_data_mesh.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py index ee6e432b1c8..1b83133c12b 100644 --- a/release/scripts/startup/bl_ui/properties_data_mesh.py +++ b/release/scripts/startup/bl_ui/properties_data_mesh.py @@ -326,9 +326,12 @@ class DATA_PT_customdata(MeshButtonsPanel, Panel): # me = context.mesh col = layout.column(align=True) + # sticky has no UI access since 2.49 - we may remove + ''' row = col.row(align=True) row.operator("mesh.customdata_create_sticky") row.operator("mesh.customdata_clear_sticky", icon='X') + ''' col.operator("mesh.customdata_clear_mask", icon='X') col.operator("mesh.customdata_clear_skin", icon='X')