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
path: root/source
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-09-19 21:09:14 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-09-19 21:09:14 +0400
commitf12d698eadef3e93cea1627a4778d0a86a7afe20 (patch)
tree102cf11b4edb0ad027e555489a9e95d3aa8698de /source
parent2e80d9ccc056dc301bd6748234a13106f877d4f4 (diff)
Fix #32576: missing image editor update when entering edit mode with UV textures.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_image/space_image.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_image/space_image.c b/source/blender/editors/space_image/space_image.c
index 4d4129b3420..abe8dfb751b 100644
--- a/source/blender/editors/space_image/space_image.c
+++ b/source/blender/editors/space_image/space_image.c
@@ -438,6 +438,10 @@ static void image_listener(ScrArea *sa, wmNotifier *wmn)
ED_area_tag_redraw(sa);
break;
case ND_MODE:
+ if (wmn->subtype == NS_EDITMODE_MESH)
+ ED_area_tag_refresh(sa);
+ ED_area_tag_redraw(sa);
+ break;
case ND_RENDER_RESULT:
case ND_RENDER_OPTIONS:
case ND_COMPO_RESULT: