[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31323] trunk/blender/release/scripts/ui/ space_image.py: Fix #23297: python error caused empty brush panel in the image editor.

Brecht Van Lommel brecht at blender.org
Fri Aug 13 19:13:07 CEST 2010


Revision: 31323
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31323
Author:   blendix
Date:     2010-08-13 19:13:07 +0200 (Fri, 13 Aug 2010)

Log Message:
-----------
Fix #23297: python error caused empty brush panel in the image editor.

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

Modified: trunk/blender/release/scripts/ui/space_image.py
===================================================================
--- trunk/blender/release/scripts/ui/space_image.py	2010-08-13 16:59:11 UTC (rev 31322)
+++ trunk/blender/release/scripts/ui/space_image.py	2010-08-13 17:13:07 UTC (rev 31323)
@@ -575,7 +575,7 @@
 
         col = layout.split().column()
         row = col.row()
-        col.template_ID_preview(toolsettings, "brush", new="brush.add", filter="is_imapaint_brush", rows=3, cols=8)
+        col.template_ID_preview(toolsettings, "brush", new="brush.add", rows=3, cols=8)
 
         if brush:
             col = layout.column()





More information about the Bf-blender-cvs mailing list