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-12-15 14:27:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-15 14:27:46 +0300
commit8aa8efb3274daa5bb62c3a20f0ed940cad0ea287 (patch)
treea2df448abeab902419ad53cd2d356ecde97c5e06 /source/blender/editors/space_sequencer/sequencer_draw.c
parent18b9385c53a29ce02fe89ee4aae99d9e87c2f38e (diff)
* rna attributes for sequence strips - seq.start_frame_final & seq.end_frame_final
these expose the final start and end after offsets are applied. when set this is like grabbing the handle and moving it. * made swapping strips shuffle effects and check for overlap.
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 ac8b222728e..a2525430a10 100644
--- a/source/blender/editors/space_sequencer/sequencer_draw.c
+++ b/source/blender/editors/space_sequencer/sequencer_draw.c
@@ -525,7 +525,7 @@ static void draw_seq_strip(Scene *scene, ARegion *ar, SpaceSeq *sseq, Sequence *
char col[3], background_col[3], is_single_image;
/* we need to know if this is a single image/color or not for drawing */
- is_single_image = (char)check_single_seq(seq);
+ is_single_image = (char)seq_single_check(seq);
/* body */
if(seq->startstill) x1= seq->start;