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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user