[Bf-blender-cvs] [69d4c7e1740] temp-vse-preview-transform2: Fix incorrect outline width

Richard Antalik noreply at git.blender.org
Wed Sep 15 17:19:55 CEST 2021


Commit: 69d4c7e17404896abbb93e35415efb7064150b4c
Author: Richard Antalik
Date:   Sun Sep 12 18:15:13 2021 +0200
Branches: temp-vse-preview-transform2
https://developer.blender.org/rB69d4c7e17404896abbb93e35415efb7064150b4c

Fix incorrect outline width

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

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

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

diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c
index cab59466283..890798a4783 100644
--- a/source/blender/editors/space_sequencer/sequencer_draw.c
+++ b/source/blender/editors/space_sequencer/sequencer_draw.c
@@ -2094,7 +2094,7 @@ static void seq_draw_image_origin_and_outline(const bContext *C, Sequence *seq)
     image_size[1] = scene->r.ysch;
   }
   else {
-    image_size[0] = strip_elem->orig_height;
+    image_size[0] = strip_elem->orig_width;
     image_size[1] = strip_elem->orig_height;
   }



More information about the Bf-blender-cvs mailing list