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:
authorTom Musgrove <LetterRip@gmail.com>2010-07-21 14:29:23 +0400
committerTom Musgrove <LetterRip@gmail.com>2010-07-21 14:29:23 +0400
commitea008f862dd10067d18c47e45604b39f9adf1f19 (patch)
tree21d636a292ce2d060ec35f5e3f85c8cb9d8f84b0 /source/blender/editors/interface/resources.c
parentf59afb5f998d98f2039e9f4278ff7773815a3029 (diff)
forcing unfied size to off right now, since the other paint modes don't understand it. It can be renabled if jason has time to look at it (should be an easy fix, but it is far too late in the evening here for me to look).
Diffstat (limited to 'source/blender/editors/interface/resources.c')
-rw-r--r--source/blender/editors/interface/resources.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c
index ff05dc41c9a..5ac6faa979e 100644
--- a/source/blender/editors/interface/resources.c
+++ b/source/blender/editors/interface/resources.c
@@ -1532,6 +1532,6 @@ void init_userdef_do_versions(void)
if (U.sculpt_paint_unified_size == 0)
U.sculpt_paint_unified_size = 35;
- if (G.main->versionfile < 252 || (G.main->versionfile == 252 && G.main->subversionfile < 5))
- U.sculpt_paint_settings |= SCULPT_PAINT_USE_UNIFIED_SIZE;
+ if (G.main->versionfile < 253 || (G.main->versionfile == 253 && G.main->subversionfile < 1))
+ U.sculpt_paint_settings &= ~SCULPT_PAINT_USE_UNIFIED_SIZE;
}