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:
authorTon Roosendaal <ton@blender.org>2009-01-20 14:09:26 +0300
committerTon Roosendaal <ton@blender.org>2009-01-20 14:09:26 +0300
commite20e4a7afd081384b4b9e8359de6b51312ba8192 (patch)
tree028abe7ecc6395d2ef1b47ff5d6fbfa83187da77 /source/blender/editors/space_outliner
parent8c479bc9332bcb4a3b6b0e47346287f491532729 (diff)
2.5
- Previewrender code back, commented out a lot of bad cruft, nothing works or is linked even! - Added NC_GROUP notifier type, used in editgroup.c and listened to in 3dview and outliner
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/space_outliner.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/space_outliner.c b/source/blender/editors/space_outliner/space_outliner.c
index 6311b698419..69f57d507b9 100644
--- a/source/blender/editors/space_outliner/space_outliner.c
+++ b/source/blender/editors/space_outliner/space_outliner.c
@@ -131,6 +131,10 @@ static void outliner_main_area_listener(ARegion *ar, wmNotifier *wmn)
ED_region_tag_redraw(ar);
break;
}
+ case NC_GROUP:
+ /* all actions now, todo: check outliner view mode? */
+ ED_region_tag_redraw(ar);
+ break;
}
}