From 295bc1249a8539b612ec1963afd6f41e5b313ed6 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 19 May 2014 22:37:35 +0200 Subject: [PATCH] Fix part of T35600: Outliner did not update when renaming armature bone names. --- source/blender/editors/space_outliner/space_outliner.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/editors/space_outliner/space_outliner.c b/source/blender/editors/space_outliner/space_outliner.c index e25e67a9f3e..41c5b00b381 100644 --- a/source/blender/editors/space_outliner/space_outliner.c +++ b/source/blender/editors/space_outliner/space_outliner.c @@ -345,6 +345,7 @@ static void outliner_main_area_listener(bScreen *UNUSED(sc), ScrArea *UNUSED(sa) case NC_GEOM: switch (wmn->data) { case ND_VERTEX_GROUP: + case ND_DATA: ED_region_tag_redraw(ar); break; }