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:
authorCampbell Barton <ideasman42@gmail.com>2010-07-14 02:21:59 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-14 02:21:59 +0400
commit03e638d1285b2a26902230772ae9261406fd6658 (patch)
tree44334ffbbe2cc7917c14fa24c244652e88f2a5f5 /source/blender/blenloader
parentc5d6665cb3965cde556e58b182070a41a3956732 (diff)
- make duplis real wasnt redrawing
- small caps option for titles (doing manually is quite painful to watch).
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 4309163fe7a..7f24c416526 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -10953,6 +10953,13 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
tex->saturation= 1.0f;
}
+ {
+ Curve *cu;
+ for(cu= main->curve.first; cu; cu= cu->id.next) {
+ cu->smallcaps_scale= 0.75f;
+ }
+ }
+
for (scene= main->scene.first; scene; scene=scene->id.next) {
if(scene) {
Sequence *seq;