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>2005-05-29 15:53:55 +0400
committerTon Roosendaal <ton@blender.org>2005-05-29 15:53:55 +0400
commit9d38f4ab382a93aa43ee7018f7c1e3b60cf1ba64 (patch)
tree7cfbb792cebdeddc791915ef1afcc8355ca58e72 /source/blender/blenloader/intern
parent90d7da7b27ee4032796d0552a55f1a316b1fcb67 (diff)
TimeLine playback settings were always initialized to default, for 2.36
version files. Made test a bit cumbersome.
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/readfile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index f1f22b0642f..b4c79741f50 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -4706,7 +4706,8 @@ static void do_versions(Main *main)
#endif
if(sl->spacetype==SPACE_TIME) {
SpaceTime *stime= (SpaceTime *)sl;
- stime->redraws= TIME_ALL_3D_WIN|TIME_ALL_ANIM_WIN;
+ if(stime->redraws==0)
+ stime->redraws= TIME_ALL_3D_WIN|TIME_ALL_ANIM_WIN;
}
}
}