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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-05-08 11:18:19 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-05-08 11:18:19 +0400
commite21d410804f3085c1b6a3384a59d9335e5fcfcc6 (patch)
tree2ff602d0b81c18d9ab70bf8480605dd006c54698 /release
parentcd60c18be17d31a651fc449b35657c1c3cdc845d (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index e11c94a54c3..a7856b340e5 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -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'