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:
authorSergey Sharybin <sergey.vfx@gmail.com>2010-09-18 12:37:47 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2010-09-18 12:37:47 +0400
commite2f439586498992969be5ac5631c51533545f3d4 (patch)
treec73c1292520a45c842d3d0976abcb04f8c2c9992 /source/blender/editors/space_outliner
parentd81315e9d221b3fdd0dafedff58398226590f468 (diff)
Fixed problems with outliner update in same cases caused by my previous commit.
This troubles were caused by "break" of ND_OBJECT case in outliner area listener, so not all cases were handled. Handle more data and actions in outline listener, but not refresh when it's actually unneeded (there where problems with it without that "break" -- extra refreshing could be made).
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/space_outliner.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/source/blender/editors/space_outliner/space_outliner.c b/source/blender/editors/space_outliner/space_outliner.c
index 1a46c32713e..5e11d3502c1 100644
--- a/source/blender/editors/space_outliner/space_outliner.c
+++ b/source/blender/editors/space_outliner/space_outliner.c
@@ -113,11 +113,21 @@ static void outliner_main_area_listener(ARegion *ar, wmNotifier *wmn)
break;
case ND_BONE_ACTIVE:
case ND_BONE_SELECT:
+ case ND_PARENT:
ED_region_tag_redraw(ar);
break;
+ case ND_CONSTRAINT:
+ switch(wmn->action) {
+ case NA_ADDED:
+ case NA_REMOVED:
+ case NA_RENAME:
+ ED_region_tag_redraw(ar);
+ break;
+ }
+ break;
case ND_MODIFIER:
- if(wmn->action == NA_RENAME)
- ED_region_tag_redraw(ar);
+ /* all modifier actions now */
+ ED_region_tag_redraw(ar);
break;
}
break;