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>2014-05-30 14:26:29 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-05-30 14:26:29 +0400
commita26e41c0b9cda257a0470d40e022180fad98c239 (patch)
treeb522e8c440290a59640ccfc461ab6a58fdd10186 /source/blender/editors/space_image
parent8008d9bdfd5730b15727d0fb16f4417a4b8a85cc (diff)
Fix T40438: Name of texture is not synchronize
Diffstat (limited to 'source/blender/editors/space_image')
-rw-r--r--source/blender/editors/space_image/space_image.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/editors/space_image/space_image.c b/source/blender/editors/space_image/space_image.c
index f60705ca52a..d1868951987 100644
--- a/source/blender/editors/space_image/space_image.c
+++ b/source/blender/editors/space_image/space_image.c
@@ -529,6 +529,13 @@ static void image_listener(bScreen *sc, ScrArea *sa, wmNotifier *wmn)
break;
}
+ case NC_ID:
+ {
+ if (wmn->action == NA_RENAME) {
+ ED_area_tag_redraw(sa);
+ }
+ break;
+ }
}
}