Remove 'Autosmooth' settings from Item 3DView panel.

Not that happy with this, but this Item panel is a bit stupid, and we could add more
useful settings as well. So better get a design decision first, here.
This commit is contained in:
Bastien Montagne 2014-05-08 09:18:19 +02:00
parent cd60c18be1
commit e21d410804
1 changed files with 0 additions and 9 deletions

View File

@ -2766,15 +2766,6 @@ class VIEW3D_PT_view3d_name(Panel):
row.label(text="", icon='BONE_DATA')
row.prop(bone, "name", text="")
elif ob.type == 'MESH':
me = ob.data
row = layout.row()
row.prop(me, "use_auto_smooth")
row = row.row()
if not me.use_auto_smooth:
row.active = False
row.prop(me, "auto_smooth_angle", text="")
class VIEW3D_PT_view3d_display(Panel):
bl_space_type = 'VIEW_3D'