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:
authorTon Roosendaal <ton@blender.org>2010-11-18 11:44:50 +0300
committerTon Roosendaal <ton@blender.org>2010-11-18 11:44:50 +0300
commitfd3c8214d03cc676518d821ee5a187c1c8db392b (patch)
treec47d28c75ba4023c47b48679cf388dcd5bb01c28 /source/blender/editors/render
parent26cd3fd293cc39d281c737acff2196bc644d7624 (diff)
Bug fix:
When 2nd window open, the code that tried to find an Image editor in the the active window failed.
Diffstat (limited to 'source/blender/editors/render')
-rw-r--r--source/blender/editors/render/render_internal.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/render/render_internal.c b/source/blender/editors/render/render_internal.c
index 94057aa5087..6c52a04eb0b 100644
--- a/source/blender/editors/render/render_internal.c
+++ b/source/blender/editors/render/render_internal.c
@@ -347,6 +347,8 @@ static ScrArea *find_area_showing_r_result(bContext *C)
break;
}
}
+ if(sa)
+ break;
}
return sa;