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>2006-04-02 16:39:11 +0400
committerTon Roosendaal <ton@blender.org>2006-04-02 16:39:11 +0400
commit9e53e4ee470055348fb1351297b80ba8f8d99b9a (patch)
treeaa5b015db71c95844af9912d6dc4f173bbe3cc31
parent00737de5bd548580784d2aa424def0e8ab2081bc (diff)
Bugfix #4042
New empty drawsize and type are initialized on loading old files now.
-rw-r--r--source/blender/blenloader/intern/readfile.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 6427fc1ae61..f710651c38d 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -5296,6 +5296,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
}
if(main->versionfile <= 241) {
+ Object *ob;
Tex *tex;
Scene *sce;
Lamp *la;
@@ -5367,15 +5368,15 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
tex->env->viewscale= 1.0f;
// tex->imaflag |= TEX_GAUSS_MIP;
}
- //Object *ob;
/* for empty drawsize and drawtype */
- /* uncomment before release! --broken
for(ob=main->object.first; ob; ob= ob->id.next) {
- ob->empty_drawtype = OB_ARROWS;
- ob->empty_drawsize = 1.0;
+ if(ob->empty_drawsize==0.0f) {
+ ob->empty_drawtype = OB_ARROWS;
+ ob->empty_drawsize = 1.0;
+ }
}
- */
+
}