sequencer fcurve anim filtering: sequence strips fcurves in meta's were showing up in the main view. mossing notifier for border select.

This commit is contained in:
2009-12-17 11:40:12 +00:00
parent 88d72e796a
commit 7a5c190820
2 changed files with 3 additions and 1 deletions

View File

@@ -792,7 +792,7 @@ static int skip_fcurve_selected_data(FCurve *fcu, ID *owner_id)
if (seq_name) MEM_freeN(seq_name);
/* can only add this F-Curve if it is selected */
if ((seq) && (seq->flag & SELECT)==0)
if (seq==NULL || (seq->flag & SELECT)==0)
return 1;
}
}

View File

@@ -872,6 +872,8 @@ static int sequencer_borderselect_exec(bContext *C, wmOperator *op)
}
}
WM_event_add_notifier(C, NC_SCENE|ND_SEQUENCER_SELECT, scene);
return OPERATOR_FINISHED;
}