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>2007-10-18 11:06:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-10-18 11:06:01 +0400
commitfce101e8313ec86ba6fdd3290dd31e5439187878 (patch)
tree3de1cd6d90eb6cda9fecd56ba4fa81f4329fb7fb /source/blender/src/drawseq.c
parent1ca2823b54559e63d358dd521ce1c1b92eaedeb9 (diff)
Sequencer
- snap to strips before and after the active strip, - Made max handle draw size 40px, instead of 28 (somtimes its hard to select handles)
Diffstat (limited to 'source/blender/src/drawseq.c')
-rw-r--r--source/blender/src/drawseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawseq.c b/source/blender/src/drawseq.c
index 4d21418b7fa..37f5126b27c 100644
--- a/source/blender/src/drawseq.c
+++ b/source/blender/src/drawseq.c
@@ -393,7 +393,7 @@ static void draw_seq_handle(Sequence *seq, SpaceSeq *sseq, short direction)
/* clamp handles to defined size in pixel space */
handsize = seq->handsize;
minhandle = 7;
- maxhandle = 28;
+ maxhandle = 40;
CLAMP(handsize, minhandle*pixelx, maxhandle*pixelx);
/* set up co-ordinates/dimensions for either left or right handle */