Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-04-22 12:25:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-22 12:25:05 +0400
commitc8c22d2cf65504443574961cea0ec1773c18735e (patch)
treeafa73d294dae59d07852d67ca3fa5786c8e2f219 /source/blender/makesdna/DNA_ID.h
parenta2b6abeee15f359ddeafdea7a2f3a965da0bf410 (diff)
rna: added lib.parent access and made filename editable.
Diffstat (limited to 'source/blender/makesdna/DNA_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index e9b1b655ad8..1eddbb26168 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -116,10 +116,10 @@ typedef struct Library {
ID id;
ID *idblock;
struct FileData *filedata;
- char name[240]; /* revealed in the UI, can store relative path */
- char filename[240]; /* expanded name, not relative, used while reading */
+ char name[240]; /* path name used for reading, can be relative and edited in the outliner */
+ char filename[240]; /* temp. absolute filepath, only used while reading */
int tot, pad; /* tot, idblock and filedata are only fo read and write */
- struct Library *parent; /* for outliner, showing dependency */
+ struct Library *parent; /* set for indirectly linked libs, used in the outliner and while reading */
} Library;
#define PREVIEW_MIPMAPS 2