Fix T39934: Duplicate node shown in outliner's datablock display

Not good to have two different things named the same way! :P
This commit is contained in:
Bastien Montagne 2014-04-28 16:37:30 +02:00
parent 28322c1496
commit 49a5c57957
Notes: blender-bot 2023-02-14 10:43:49 +01:00
Referenced by issue #39939, Bevel produces duplicated edges
Referenced by issue #39934, Duplicate node shown in outliner's datablock display
1 changed files with 2 additions and 2 deletions

View File

@ -1559,13 +1559,13 @@ static void rna_def_editor(BlenderRNA *brna)
prop = RNA_def_property(srna, "sequences", PROP_COLLECTION, PROP_NONE);
RNA_def_property_collection_sdna(prop, NULL, "seqbase", NULL);
RNA_def_property_struct_type(prop, "Sequence");
RNA_def_property_ui_text(prop, "Sequences", "");
RNA_def_property_ui_text(prop, "Sequences", "Top-level strips only");
RNA_api_sequences(brna, prop);
prop = RNA_def_property(srna, "sequences_all", PROP_COLLECTION, PROP_NONE);
RNA_def_property_collection_sdna(prop, NULL, "seqbase", NULL);
RNA_def_property_struct_type(prop, "Sequence");
RNA_def_property_ui_text(prop, "Sequences", "");
RNA_def_property_ui_text(prop, "All Sequences", "All strips, recursively including those inside metastrips");
RNA_def_property_collection_funcs(prop, "rna_SequenceEditor_sequences_all_begin",
"rna_SequenceEditor_sequences_all_next", NULL, NULL, NULL, NULL, NULL, NULL);