[Bf-blender-cvs] [ef3a03c8100] greasepencil-object: Improve Stabilizer tooltip

Antonio Vazquez noreply at git.blender.org
Sat Feb 3 11:03:23 CET 2018


Commit: ef3a03c810093cfe7afe3bbe04775eaa4ebdd5fe
Author: Antonio Vazquez
Date:   Sat Feb 3 11:03:12 2018 +0100
Branches: greasepencil-object
https://developer.blender.org/rBef3a03c810093cfe7afe3bbe04775eaa4ebdd5fe

Improve Stabilizer tooltip

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

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

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

diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 6d65de64618..4a6f46d7785 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2413,7 +2413,8 @@ static void rna_def_gpencil_brush(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "use_stabilizer", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_BRUSH_STABILIZE_MOUSE);
 	RNA_def_property_boolean_default(prop, true);
-	RNA_def_property_ui_text(prop, "Stabilizer", "Draw lines with a delay to allow smooth strokes");
+	RNA_def_property_ui_text(prop, "Stabilizer", 
+		"Draw lines with a delay to allow smooth strokes. Press Shift key to override while drawing");
 
 	/* Cursor Color */
 	static float default_1[3] = { 1.0f, 1.0f, 1.0f };



More information about the Bf-blender-cvs mailing list