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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2014-05-09 17:11:57 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2014-05-09 19:14:13 +0400
commit97823f604796fb008fef03653974473ece75d18e (patch)
tree45664f4cf0afd03546baeaf2b70df1d69bf4a306
parent5f01b3d96ed116d1c0416d5393911211d409a4ae (diff)
Fix wrong job type used in cycles bake operator, could cause crashes.
Ref T40077.
-rw-r--r--source/blender/editors/object/object_bake_api.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_bake_api.c b/source/blender/editors/object/object_bake_api.c
index d8e8a31c4ea..319aea147b6 100644
--- a/source/blender/editors/object/object_bake_api.c
+++ b/source/blender/editors/object/object_bake_api.c
@@ -77,7 +77,7 @@
static int bake_modal(bContext *C, wmOperator *UNUSED(op), const wmEvent *event)
{
/* no running blender, remove handler and pass through */
- if (0 == WM_jobs_test(CTX_wm_manager(C), CTX_data_scene(C), WM_JOB_TYPE_OBJECT_BAKE))
+ if (0 == WM_jobs_test(CTX_wm_manager(C), CTX_data_scene(C), WM_JOB_TYPE_OBJECT_BAKE_TEXTURE))
return OPERATOR_FINISHED | OPERATOR_PASS_THROUGH;
/* running render */
@@ -1107,3 +1107,4 @@ void OBJECT_OT_bake(wmOperatorType *ot)
RNA_def_boolean(ot->srna, "use_automatic_name", false, "Automatic Name",
"Automatically name the output file with the pass type");
}
+