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:
authorPeter Schlaile <peter@schlaile.de>2010-09-05 00:55:31 +0400
committerPeter Schlaile <peter@schlaile.de>2010-09-05 00:55:31 +0400
commite75f037fac7accb3a6d1d8ab7e7b073cf03b6aca (patch)
tree95be156bebec5958e7ebe0acf6531c83c21b29d0 /source/blender/editors/transform/transform.h
parent979b06f739a379c04ca7654d7fd48a2cf0be1ee9 (diff)
This fixes: [#23672] If frame offset is too high the strip jumps forward
when you try to move it.
Diffstat (limited to 'source/blender/editors/transform/transform.h')
-rw-r--r--source/blender/editors/transform/transform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h
index c1e62eb563c..6cfe78a979d 100644
--- a/source/blender/editors/transform/transform.h
+++ b/source/blender/editors/transform/transform.h
@@ -166,7 +166,7 @@ typedef struct TransDataCurveHandleFlags {
typedef struct TransDataSeq {
struct Sequence *seq;
int flag; /* a copy of seq->flag that may be modified for nested strips */
- short start_offset; /* use this so we can have transform data at the strips start, but apply correctly to the start frame */
+ int start_offset; /* use this so we can have transform data at the strips start, but apply correctly to the start frame */
short sel_flag; /* one of SELECT, SEQ_LEFTSEL and SEQ_RIGHTSEL */
} TransDataSeq;