== Sequencer ==

Renamed Filter-Y to De-Interlace and moved F-Key to D-Key.
(Also added file reload on D-Key)
This commit is contained in:
Peter Schlaile 2008-06-22 20:59:29 +00:00
parent dac3434b03
commit d229db61e9
3 changed files with 7 additions and 8 deletions

@ -900,7 +900,7 @@ static void seq_panel_filter_video()
"Convert input to float data");
uiDefButBitI(block, TOG, SEQ_FILTERY,
B_SEQ_BUT_RELOAD_FILE, "FilterY",
B_SEQ_BUT_RELOAD_FILE, "De-Inter",
170,110,80,19, &last_seq->flag,
0.0, 21.0, 100, 0,
"For video movies to remove fields");

@ -2634,12 +2634,13 @@ void set_filter_seq(void)
ed= G.scene->ed;
if(ed==0) return;
if(okee("Set FilterY")==0) return;
if(okee("Set Deinterlace")==0) return;
WHILE_SEQ(ed->seqbasep) {
if(seq->flag & SELECT) {
if(seq->type==SEQ_MOVIE) {
seq->flag |= SEQ_FILTERY;
reload_sequence_new_file(seq);
}
}

@ -4976,11 +4976,13 @@ static void winqreadseqspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
}
break;
case DKEY:
if (G.qual == (LR_CTRLKEY|LR_SHIFTKEY))
if (G.qual == (LR_CTRLKEY|LR_SHIFTKEY)) {
duplicate_marker();
else if ((G.qual==LR_SHIFTKEY)) {
} else if ((G.qual==LR_SHIFTKEY)) {
if(sseq->mainb) break;
add_duplicate_seq();
} else if (G.qual == 0) {
set_filter_seq();
}
break;
case EKEY:
@ -4988,10 +4990,6 @@ static void winqreadseqspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
if((G.qual==0))
transform_seq('e', 0);
break;
case FKEY:
if((G.qual==0))
set_filter_seq();
break;
case GKEY:
if (G.qual & LR_CTRLKEY)
transform_markers('g', 0);