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:
authorCampbell Barton <ideasman42@gmail.com>2012-04-05 05:55:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-05 05:55:49 +0400
commitfc257b1f718aa81a74e0b5ee5476ae45f603792e (patch)
tree5d335ae2e5b24b41481ae7578fce3cc3e6726063 /release
parentc297374449656aba026ef91eda9ad045873326f5 (diff)
fix [#30817] Toolshelf delete vs X menu don't match? Bug/Inconsistancy?
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index b3c8e94a3c4..55710685d54 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -144,7 +144,7 @@ class VIEW3D_PT_tools_meshedit(View3DPanel, Panel):
col = layout.column(align=True)
col.label(text="Remove:")
- col.operator("mesh.delete")
+ col.menu("VIEW3D_MT_edit_mesh_delete")
col.operator("mesh.merge")
col.operator("mesh.remove_doubles")