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:
authorCampbell Barton <ideasman42@gmail.com>2012-09-30 14:39:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-30 14:39:00 +0400
commit9f67ebc35117313bb48f779a727f239eabf22293 (patch)
treecb14338ae6e01afc73e6d7a4ea34023e68b4f8b7 /source/blender/editors/space_image
parent368e502dba0a635b10a0ee2ea1641666a91283ff (diff)
fix for crash drawing the clip view with a blend file that has lock to selected, but no clip in the view.
Diffstat (limited to 'source/blender/editors/space_image')
-rw-r--r--source/blender/editors/space_image/image_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c
index e617daf6cf7..4f57b2249d1 100644
--- a/source/blender/editors/space_image/image_ops.c
+++ b/source/blender/editors/space_image/image_ops.c
@@ -1432,7 +1432,7 @@ static int image_save_as_poll(bContext *C)
SpaceImage *sima = CTX_wm_space_image(C);
Image *ima = ED_space_image(sima);
- if ((ima->source == IMA_SRC_VIEWER)) {
+ if (ima->source == IMA_SRC_VIEWER) {
CTX_wm_operator_poll_msg_set(C, "can't save image while rendering");
return FALSE;
}