[Bf-blender-cvs] [027fced7188] temp-vse-preview-transform: Fix incorrect outline width

Richard Antalik noreply at git.blender.org
Sun Sep 12 19:03:38 CEST 2021


Commit: 027fced71884fcb29fb7094ce592e78b70664d62
Author: Richard Antalik
Date:   Sun Sep 12 18:15:13 2021 +0200
Branches: temp-vse-preview-transform
https://developer.blender.org/rB027fced71884fcb29fb7094ce592e78b70664d62

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