Merge branch 'master' into blender2.8

Conflicts:
source/blender/editors/screen/screen_edit.c
This commit is contained in:
2018-07-06 12:30:48 +02:00
8 changed files with 82 additions and 5 deletions

View File

@@ -500,7 +500,7 @@ void WM_jobs_kill_type(struct wmWindowManager *wm, void *owner, int job_type)
next_job = wm_job->next;
if (!owner || wm_job->owner == owner)
if (wm_job->job_type == job_type)
if (job_type == WM_JOB_TYPE_ANY || wm_job->job_type == job_type)
wm_jobs_kill_job(wm, wm_job);
}
}