[Bf-blender-cvs] [25bedec] master: GPencil Eraser Size-Saving Fix

Joshua Leung noreply at git.blender.org
Thu May 21 15:24:19 CEST 2015


Commit: 25bedeca9b84c256e8a50b322fa10e7e598805e5
Author: Joshua Leung
Date:   Fri May 22 01:20:48 2015 +1200
Branches: master
https://developer.blender.org/rB25bedeca9b84c256e8a50b322fa10e7e598805e5

GPencil Eraser Size-Saving Fix

On second thought, the eraser size should be saved even if the brush type is not
eraser, as we can toggle this now.

===================================================================

M	source/blender/editors/gpencil/gpencil_paint.c

===================================================================

diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index 360ddfe..f3eb161 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -1440,11 +1440,14 @@ static void gpencil_draw_exit(bContext *C, wmOperator *op)
 		if (p->paintmode == GP_PAINTMODE_ERASER) {
 			/* turn off radial brush cursor */
 			gpencil_draw_toggle_eraser_cursor(C, p, false);
-			
-			/* always store the new eraser size to be used again next time */
-			U.gp_eraser = p->radius;
 		}
 		
+		/* always store the new eraser size to be used again next time
+		 * NOTE: Do this even when not in eraser mode, as eraser may
+		 *       have been toggled at some point.
+		 */
+		U.gp_eraser = p->radius;
+		
 		/* cleanup */
 		gp_paint_cleanup(p);
 		gp_session_cleanup(p);




More information about the Bf-blender-cvs mailing list