Fix T38319: no camera error message for render not showing correctly.

This commit is contained in:
Brecht Van Lommel 2014-01-22 17:40:10 +01:00
parent 1ace875391
commit 7da44effe9
Notes: blender-bot 2023-02-14 11:18:10 +01:00
Referenced by issue #38319, No camera error message shows up only if you move the mouse
1 changed files with 1 additions and 1 deletions

View File

@ -2335,7 +2335,7 @@ static int check_valid_camera(Scene *scene, Object *camera_override, ReportList
if (camera_override == NULL && scene->camera == NULL)
scene->camera = BKE_scene_camera_find(scene);
if (scene->r.scemode & R_DOSEQ) {
if (RE_seq_render_active(scene, &scene->r)) {
if (scene->ed) {
Sequence *seq = scene->ed->seqbase.first;