From ed36b00e368ff59cbc1f59e6732caa8c63cf1b1d Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 13 Aug 2010 17:13:07 +0000 Subject: [PATCH] Fix #23297: python error caused empty brush panel in the image editor. --- release/scripts/ui/space_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/ui/space_image.py b/release/scripts/ui/space_image.py index 99d41244431..b3598b4d04c 100644 --- a/release/scripts/ui/space_image.py +++ b/release/scripts/ui/space_image.py @@ -575,7 +575,7 @@ class IMAGE_PT_paint(bpy.types.Panel): 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()