[Bf-blender-cvs] [e21d410] master: Remove 'Autosmooth' settings from Item 3DView panel.

Bastien Montagne noreply at git.blender.org
Thu May 8 09:20:45 CEST 2014


Commit: e21d410804f3085c1b6a3384a59d9335e5fcfcc6
Author: Bastien Montagne
Date:   Thu May 8 09:18:19 2014 +0200
https://developer.blender.org/rBe21d410804f3085c1b6a3384a59d9335e5fcfcc6

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.

===================================================================

M	release/scripts/startup/bl_ui/space_view3d.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index e11c94a..a7856b3 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'




More information about the Bf-blender-cvs mailing list