Added "bpydoc" to the global namespace of python scripts, making documentation available no matter what data is open in the current blend file, Directory type was also missing from the subtype enum causing the test rna-dump script to fail.

This commit is contained in:
2008-12-16 16:32:48 +00:00
parent 67dfe58f8c
commit 6c2750a6fe
4 changed files with 19 additions and 0 deletions

View File

@@ -25,6 +25,9 @@ static PyObject *CreateGlobalDictionary( void )
PyDict_SetItemString( dict, "bpy", item );
Py_DECREF(item);
item = BPY_rna_doc();
PyDict_SetItemString( dict, "bpydoc", item );
Py_DECREF(item);
return dict;
}