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:
authorCampbell Barton <ideasman42@gmail.com>2009-11-14 22:26:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-14 22:26:58 +0300
commite94640040b8e984952de7ebbb772ebe9fdb276c4 (patch)
tree729d1ff859883c084f84b39094b82512887b600f /source/blender/editors/space_sequencer/sequencer_draw.c
parentc2e092ef8b2a6ed18d9eab49b1d4631f75d1d455 (diff)
sequencer support for loading multiple movie and sounds at once.
- more api like functions for adding movie, sound & images (easier to use from pyrna api) - operators share more settings - renamed get_last_seq() to active_seq_get() - same for set.
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_draw.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c
index ff9edeaeb4b..88be1d61ff6 100644
--- a/source/blender/editors/space_sequencer/sequencer_draw.c
+++ b/source/blender/editors/space_sequencer/sequencer_draw.c
@@ -940,7 +940,7 @@ void drawseqspace(const bContext *C, ARegion *ar)
/* sequences: first deselect */
if(ed) {
- Sequence *last_seq = get_last_seq(scene);
+ Sequence *last_seq = active_seq_get(scene);
int sel = 0, j;
int outline_tint;
float pixelx = (v2d->cur.xmax - v2d->cur.xmin)/(v2d->mask.xmax - v2d->mask.xmin);