[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [30575] trunk/blender/source/blender/ editors/interface/resources.c: Fix for last commit, wasn' t doing correct bit flag operation.

Brecht Van Lommel brecht at blender.org
Wed Jul 21 12:33:31 CEST 2010


Revision: 30575
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=30575
Author:   blendix
Date:     2010-07-21 12:33:31 +0200 (Wed, 21 Jul 2010)

Log Message:
-----------
Fix for last commit, wasn't doing correct bit flag operation.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/interface/resources.c

Modified: trunk/blender/source/blender/editors/interface/resources.c
===================================================================
--- trunk/blender/source/blender/editors/interface/resources.c	2010-07-21 10:29:23 UTC (rev 30574)
+++ trunk/blender/source/blender/editors/interface/resources.c	2010-07-21 10:33:31 UTC (rev 30575)
@@ -1533,5 +1533,5 @@
 		U.sculpt_paint_unified_size = 35;
 
 	if (G.main->versionfile < 253 || (G.main->versionfile == 253 && G.main->subversionfile < 1))
-		U.sculpt_paint_settings = !SCULPT_PAINT_USE_UNIFIED_SIZE;
+		U.sculpt_paint_settings &= ~SCULPT_PAINT_USE_UNIFIED_SIZE;
 }





More information about the Bf-blender-cvs mailing list