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:
authorJason Wilkins <Jason.A.Wilkins@gmail.com>2010-07-23 00:18:42 +0400
committerJason Wilkins <Jason.A.Wilkins@gmail.com>2010-07-23 00:18:42 +0400
commit2a02632882a4b538fcde785668ef993d26fae84b (patch)
tree038ce6857d1e571cfb3c7fcb48cf70d1fc3347cd /source/blender/makesrna/intern/rna_brush.c
parent3b5b761a56424987790bd1aad6fcb9ac1f0a281b (diff)
* removing the notifiers I added until I can discover the most lightweight way to achieve the same thing
Diffstat (limited to 'source/blender/makesrna/intern/rna_brush.c')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 1da8986fd4c..cd2a515d185 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -52,7 +52,7 @@ static void rna_Brush_update(Main *bmain, Scene *scene, PointerRNA *ptr)
{
Brush *br= (Brush*)ptr->data;
WM_main_add_notifier(NC_BRUSH|NA_EDITED, br);
- WM_main_add_notifier(NC_SPACE|ND_SPACE_VIEW3D, NULL);
+ //WM_main_add_notifier(NC_SPACE|ND_SPACE_VIEW3D, NULL);
}
static int rna_Brush_is_sculpt_brush(Brush *me, bContext *C)