[Bf-blender-cvs] [055bbc43e64] greasepencil-object: Increase maximum sculpt brush size

Antonio Vazquez noreply at git.blender.org
Tue Dec 5 10:43:29 CET 2017


Commit: 055bbc43e64349fb34eec00777a9d24971cec23f
Author: Antonio Vazquez
Date:   Tue Dec 5 10:42:53 2017 +0100
Branches: greasepencil-object
https://developer.blender.org/rB055bbc43e64349fb34eec00777a9d24971cec23f

Increase maximum sculpt brush size

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

M	source/blender/makesrna/intern/rna_sculpt_paint.c

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

diff --git a/source/blender/makesrna/intern/rna_sculpt_paint.c b/source/blender/makesrna/intern/rna_sculpt_paint.c
index 07e2afb5fcb..5a8d4997744 100644
--- a/source/blender/makesrna/intern/rna_sculpt_paint.c
+++ b/source/blender/makesrna/intern/rna_sculpt_paint.c
@@ -1127,7 +1127,7 @@ static void rna_def_gpencil_sculpt(BlenderRNA *brna)
 
 	prop = RNA_def_property(srna, "size", PROP_INT, PROP_PIXEL);
 	RNA_def_property_range(prop, 1, MAX_BRUSH_PIXEL_RADIUS);
-	RNA_def_property_ui_range(prop, 1, 100, 10, 3); // XXX: too big
+	RNA_def_property_ui_range(prop, 1, 250, 10, 3); 
 	RNA_def_property_ui_text(prop, "Radius", "Radius of the brush in pixels");
 	RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);



More information about the Bf-blender-cvs mailing list