Fix RNA LayerCollectionEngineSettingsClay not inheriting from LayerCollectionSettings.

Was hence missing the 'name' property, which broke the 'dict-like'
behavior of Scene.collection_properties.
This commit is contained in:
Bastien Montagne 2017-04-13 12:16:32 +02:00
parent 6f268ac55d
commit 102c331146
1 changed files with 1 additions and 1 deletions

View File

@ -5899,7 +5899,7 @@ static void rna_def_layer_collection_engine_settings_clay(BlenderRNA *brna)
{0, NULL, 0, NULL, NULL}
};
srna = RNA_def_struct(brna, "LayerCollectionEngineSettingsClay", NULL);
srna = RNA_def_struct(brna, "LayerCollectionEngineSettingsClay", "LayerCollectionSettings");
RNA_def_struct_ui_text(srna, "Collections Clay Engine Settings", "Engine specific settings for this collection");
RNA_define_verify_sdna(0); /* not in sdna */