Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYevgeny Makarov <jenkm>2020-12-30 21:56:24 +0300
committerHans Goudey <h.goudey@me.com>2020-12-30 21:56:24 +0300
commit2d86175baccb718d45ad04cb82ebdade4f56e86d (patch)
tree81316fb259a11c40a5ccb06b3fdb7846cd417262 /source/blender/editors/space_sequencer
parent2be2165dd6478eff51291e2c173bd91f5d720c6d (diff)
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
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_draw.c1
1 files changed, 1 insertions, 0 deletions
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();