Fix T43740: 'Back to Previous' failed on reload

Would restore with the file-selector where the 'info' header should be.
This commit is contained in:
Campbell Barton 2015-02-23 21:33:14 +11:00
parent b497eae0a8
commit 8ee2b01b04
Notes: blender-bot 2023-02-14 09:28:25 +01:00
Referenced by issue #43740, not possible to reopen a project closed while browsing in 'append'
1 changed files with 3 additions and 0 deletions

View File

@ -2774,6 +2774,9 @@ static void write_screens(WriteData *wd, ListBase *scrbase)
else if (sl->spacetype==SPACE_CLIP) {
writestruct(wd, DATA, "SpaceClip", 1, sl);
}
else if (sl->spacetype == SPACE_INFO) {
writestruct(wd, DATA, "SpaceInfo", 1, sl);
}
sl= sl->next;
}