[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31043] trunk/blender/release/scripts/ui/ space_view3d_toolbar.py: Fix #23157: missing sculpt symmetry and appearance panels after python

Brecht Van Lommel brecht at blender.org
Wed Aug 4 17:56:18 CEST 2010


Revision: 31043
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31043
Author:   blendix
Date:     2010-08-04 17:56:18 +0200 (Wed, 04 Aug 2010)

Log Message:
-----------
Fix #23157: missing sculpt symmetry and appearance panels after python
registration changes.

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/space_view3d_toolbar.py

Modified: trunk/blender/release/scripts/ui/space_view3d_toolbar.py
===================================================================
--- trunk/blender/release/scripts/ui/space_view3d_toolbar.py	2010-08-04 15:52:59 UTC (rev 31042)
+++ trunk/blender/release/scripts/ui/space_view3d_toolbar.py	2010-08-04 15:56:18 UTC (rev 31043)
@@ -1016,7 +1016,7 @@
 
 		
 		
-class VIEW3D_PT_sculpt_symmetry(PaintPanel):
+class VIEW3D_PT_sculpt_symmetry(PaintPanel, bpy.types.Panel):
     bl_label = "Symmetry"
     bl_default_closed = True
 
@@ -1054,7 +1054,7 @@
 
         col.prop(sculpt, "use_symmetry_feather", text="Feather")
 
-class VIEW3D_PT_tools_brush_appearance(PaintPanel):
+class VIEW3D_PT_tools_brush_appearance(PaintPanel, bpy.types.Panel):
     bl_label = "Appearance"
     bl_default_closed = True
 





More information about the Bf-blender-cvs mailing list