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:
authorTon Roosendaal <ton@blender.org>2003-10-05 17:19:08 +0400
committerTon Roosendaal <ton@blender.org>2003-10-05 17:19:08 +0400
commit336afad8d63961575a00f9034e6936fb4d8dd1e1 (patch)
tree8a11b38f6ec3d431f78e46ca715efdf6f53a1e27 /source/blender/blenloader
parente33e4addeb49dbdd52ba3cc541ada814b58d510c (diff)
- added little original feature to panels: TABS! :)
while dragging you can merge panels, or while dragging on a tab you can unmerge them.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 6f34e3137a9..eee0e22de6f 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -2523,10 +2523,13 @@ static void direct_link_screen(FileData *fd, bScreen *sc)
/* areas */
sa= sc->areabase.first;
while(sa) {
+ Panel *pa;
SpaceLink *sl;
link_list(fd, &(sa->spacedata));
link_list(fd, &(sa->panels));
+
+ for(pa= sa->panels.first; pa; pa=pa->next) pa->paneltab= newdataadr(fd, pa->paneltab);
for (sl= sa->spacedata.first; sl; sl= sl->next) {
if (sl->spacetype==SPACE_VIEW3D) {