* enable unified paint/sculpt size by default.

Note: I think this will enable paint/sculpt in all files, even when user has turned it off, unless subversionfile is bumped to 6 and the comparison is changed to subversionfile < 6.  

I'll leave that to somebody else who knows better when to change the subversionfile.
This commit is contained in:
Jason Wilkins 2010-07-20 21:55:08 +00:00
parent 8005e7f130
commit a0c80f31a0

@ -1531,4 +1531,7 @@ 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;
}