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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-12-13 15:58:59 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-12-13 15:58:59 +0400
commitb865c0314f4bd2ead240accff1d06234f614acd2 (patch)
tree61026809a1b3bebb7b2f0614912d4e37267da897 /source/blender/blenloader
parent3717a4a9e1ef159ce9b75738cd40122bbd01671b (diff)
parent5466befb38cf4ba21e4cf97f0318aaa7f2b10938 (diff)
Merging r42533 through r42601 from trunk into soc-2011-tomato
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 6479c3ee04d..340582ba627 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -12676,6 +12676,16 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
}
}
+ if (main->versionfile < 260 || (main->versionfile == 260 && main->subversionfile < 8))
+ {
+ Brush *brush;
+
+ for (brush= main->brush.first; brush; brush= brush->id.next) {
+ if (brush->sculpt_tool == SCULPT_TOOL_ROTATE)
+ brush->alpha= 1.0f;
+ }
+ }
+
/* put compatibility code here until next subversion bump */
{
MovieClip *clip;