Fix #108704: missing redraw after timeline scrubbing with temporal denoise

The issue was caused by 037b3f87bd.
This commit is contained in:
Jacques Lucke
2023-06-09 13:49:31 +02:00
parent 9735b8ee71
commit b344e4ba61

View File

@@ -264,6 +264,10 @@ static bool need_extra_redraw_after_scrubbing_ends(bContext *C)
* scrubbing, the actual result should be shown again. */
return true;
}
Scene *scene = CTX_data_scene(C);
if (scene->eevee.flag & SCE_EEVEE_TAA_REPROJECTION) {
return true;
}
wmWindowManager *wm = CTX_wm_manager(C);
Object *object = CTX_data_active_object(C);
if (object && object->type == OB_GPENCIL_LEGACY) {