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:
authorThomas Dinges <blender@dingto.org>2010-02-10 20:38:58 +0300
committerThomas Dinges <blender@dingto.org>2010-02-10 20:38:58 +0300
commit2fe216b7068273716a758a65055949b5d8835c06 (patch)
tree7bef6676bee556461bf3875febe3f6cca54c8fcd /source/blender/editors/space_info/space_info.c
parentbcae5e2e62038914433cd450f3871dc5326137e2 (diff)
Fix for [#21082] UI not updated immediately for Graphical cursor and change object's name
Diffstat (limited to 'source/blender/editors/space_info/space_info.c')
-rw-r--r--source/blender/editors/space_info/space_info.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_info/space_info.c b/source/blender/editors/space_info/space_info.c
index 9f7a74465e0..70c8d242f5f 100644
--- a/source/blender/editors/space_info/space_info.c
+++ b/source/blender/editors/space_info/space_info.c
@@ -175,6 +175,9 @@ static void info_header_listener(ARegion *ar, wmNotifier *wmn)
if(wmn->data == ND_SPACE_INFO)
ED_region_tag_redraw(ar);
break;
+ case NC_ID:
+ if(wmn->action == NA_RENAME)
+ ED_region_tag_redraw(ar);
}
}