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:
authorJiri Hnidek <jiri.hnidek@tul.cz>2006-05-30 17:38:22 +0400
committerJiri Hnidek <jiri.hnidek@tul.cz>2006-05-30 17:38:22 +0400
commit19c6ad71161b32587d7708c4c61063392a11ad76 (patch)
tree834b518355deab9e8186c6d15830eb3bf44cdf3f /source/blender/blenkernel/BKE_global.h
parent263771fc1c06e58f45f298efec14fe7ecd053b0d (diff)
Bugfix:
Open recent should work correctly now, it uses ListBase to store list of recent opened (saved) blend files
Diffstat (limited to 'source/blender/blenkernel/BKE_global.h')
-rw-r--r--source/blender/blenkernel/BKE_global.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_global.h b/source/blender/blenkernel/BKE_global.h
index fe48f88044e..3051403c412 100644
--- a/source/blender/blenkernel/BKE_global.h
+++ b/source/blender/blenkernel/BKE_global.h
@@ -87,8 +87,9 @@ typedef struct Global {
/* strings: lastsaved */
char ima[160], sce[160], lib[160];
-
- char recent[10][160];
+
+ /* strings of recent opend files */
+ struct ListBase recent_files;
/* totals */
short totobj, totlamp, totobjsel, totcurve, totmesh;