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:
authorJulian Eisel <eiseljulian@gmail.com>2015-04-22 22:50:21 +0300
committerJulian Eisel <eiseljulian@gmail.com>2015-04-22 22:50:49 +0300
commit90b765233496aef50203e589fa8e2910fa980d78 (patch)
tree78b060942ece47d0c418371e6d69a555870f08ba
parent4a8421faa45c89399cb58ea7b372a6fe65721a55 (diff)
Fix T44472: Stereo 3D save options missing in File Browser
-rw-r--r--source/blender/editors/space_image/image_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c
index db4029d9678..24eb1195ab1 100644
--- a/source/blender/editors/space_image/image_ops.c
+++ b/source/blender/editors/space_image/image_ops.c
@@ -1933,7 +1933,7 @@ static void image_save_as_draw(bContext *UNUSED(C), wmOperator *op)
uiLayout *layout = op->layout;
ImageFormatData *imf = op->customdata;
PointerRNA imf_ptr, ptr;
- const bool is_multiview = RNA_boolean_get(op->ptr, "use_multiview");
+ const bool is_multiview = RNA_boolean_get(op->ptr, "show_multiview");
/* image template */
RNA_pointer_create(NULL, &RNA_ImageFormatSettings, imf, &imf_ptr);
@@ -1945,7 +1945,7 @@ static void image_save_as_draw(bContext *UNUSED(C), wmOperator *op)
/* multiview template */
if (is_multiview)
- uiTemplateImageFormatViews(layout, &imf_ptr, NULL);
+ uiTemplateImageFormatViews(layout, &imf_ptr, op->ptr);
}
static int image_save_as_poll(bContext *C)