[Bf-blender-cvs] [32481a5732f] blender-v3.2-release: Fix T99091: Freeze when changing strip source with thumbnails enabled

Richard Antalik noreply at git.blender.org
Fri Jun 24 11:08:33 CEST 2022


Commit: 32481a5732f2ce785c7a8b27145683391513c003
Author: Richard Antalik
Date:   Thu Jun 23 17:49:26 2022 +0200
Branches: blender-v3.2-release
https://developer.blender.org/rB32481a5732f2ce785c7a8b27145683391513c003

Fix T99091: Freeze when changing strip source with thumbnails enabled

When input file is changed, `orig_height` and `orig_width` fields are
reset, which causes thumbnail dimensions to be incorrectly calculated.

Only draw thumbnails if both mentioned fields are non 0.

===================================================================

M	source/blender/editors/space_sequencer/sequencer_thumbnails.c

===================================================================

diff --git a/source/blender/editors/space_sequencer/sequencer_thumbnails.c b/source/blender/editors/space_sequencer/sequencer_thumbnails.c
index 43c5e004040..2b7b6a4e1a1 100644
--- a/source/blender/editors/space_sequencer/sequencer_thumbnails.c
+++ b/source/blender/editors/space_sequencer/sequencer_thumbnails.c
@@ -425,6 +425,11 @@ void draw_seq_strip_thumbnail(View2D *v2d,
   float image_height, image_width, thumb_width;
   rcti crop;
 
+  StripElem *se = seq->strip->stripdata;
+  if (se->orig_height == 0 || se->orig_width == 0) {
+    return;
+  }
+
   /* If width of the strip too small ignore drawing thumbnails. */
   if ((y2 - y1) / pixely <= 20 * U.dpi_fac) {
     return;



More information about the Bf-blender-cvs mailing list