From 2d86175baccb718d45ad04cb82ebdade4f56e86d Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Wed, 30 Dec 2020 12:56:24 -0600 Subject: [PATCH] Fix unreported: Sequencer grid lines are not drawn By design, there should be lines between the alternating horizontal stripes in the Sequencer. But currently they are all drawn in one place, on top of each other. Mistake in rBfae895125efe. Differential Revision: https://developer.blender.org/D9962 --- source/blender/editors/space_sequencer/sequencer_draw.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c index 2ee0dcea5e5..67d7fed88ed 100644 --- a/source/blender/editors/space_sequencer/sequencer_draw.c +++ b/source/blender/editors/space_sequencer/sequencer_draw.c @@ -1911,6 +1911,7 @@ static void draw_seq_backdrop(View2D *v2d) while (line_len--) { immVertex2f(pos, v2d->cur.xmax, i); immVertex2f(pos, v2d->cur.xmin, i); + i++; } immEnd();