From b344e4ba61a4fc380ffc5f3431b3e90aa8b5e360 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Fri, 9 Jun 2023 13:49:31 +0200 Subject: [PATCH] Fix #108704: missing redraw after timeline scrubbing with temporal denoise The issue was caused by 037b3f87bd58e003d8fe8ca725dfa59969657e6c. --- source/blender/editors/animation/anim_ops.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/blender/editors/animation/anim_ops.c b/source/blender/editors/animation/anim_ops.c index 22c9217dc35..5382988e372 100644 --- a/source/blender/editors/animation/anim_ops.c +++ b/source/blender/editors/animation/anim_ops.c @@ -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) {