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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-08-13 21:13:07 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-08-13 21:13:07 +0400
commited36b00e368ff59cbc1f59e6732caa8c63cf1b1d (patch)
treef10c2dc257b6616d854555097babd9a2a4539ed9
parent32792a58e3c420950172a6edbfeea797f98e868e (diff)
Fix #23297: python error caused empty brush panel in the image editor.
-rw-r--r--release/scripts/ui/space_image.py2
1 files changed, 1 insertions, 1 deletions
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()