== Sequencer ==

Bugfix: seq_cut still used short-frame numbers preventing it from working
on long timelines.
This commit is contained in:
Peter Schlaile 2006-07-04 19:46:08 +00:00
parent 9c9f5dc81f
commit fe54be1358
2 changed files with 2 additions and 2 deletions

@ -60,7 +60,7 @@ void swap_select_seq(void);
void touch_seq_files(void);
void transform_seq(int mode, int context);
void un_meta(void);
void seq_cut(short cutframe);
void seq_cut(int cutframe);
/* drawseq.c */
void do_seqbuttons(short);

@ -2328,7 +2328,7 @@ void clever_numbuts_seq(void)
}
}
void seq_cut(short cutframe)
void seq_cut(int cutframe)
{
Editing *ed;
Sequence *seq;