== Sequencer ==

Made Multicam-Editing really work:
* added a panel within N-keys, so that one can start/stop playback
  and cut between cameras directly from the panel
* made "active_strip" RNA editable, to make that work correctly
  (is usefull anyways :) )
This commit is contained in:
2010-05-02 17:36:38 +00:00
parent d750c07d67
commit 31cfad9fda
3 changed files with 58 additions and 3 deletions

View File

@@ -804,6 +804,8 @@ static void rna_def_editor(BlenderRNA *brna)
prop= RNA_def_property(srna, "active_strip", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "act_seq");
RNA_def_property_flag(prop, PROP_EDITABLE);
RNA_def_property_ui_text(prop, "Active Strip", "Sequencers active strip");
}