[Bf-blender-cvs] [9f4e8108fdf] greasepencil-object: GP: Remove redundant text

Antonioya noreply at git.blender.org
Thu Dec 13 19:38:35 CET 2018


Commit: 9f4e8108fdfef0fe5e91fe97ae76a9a10d82a5d1
Author: Antonioya
Date:   Thu Dec 13 19:38:25 2018 +0100
Branches: greasepencil-object
https://developer.blender.org/rB9f4e8108fdfef0fe5e91fe97ae76a9a10d82a5d1

GP: Remove redundant text

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

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

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

diff --git a/source/blender/editors/gpencil/gpencil_edit.c b/source/blender/editors/gpencil/gpencil_edit.c
index 612330a9750..e11ef7dec6a 100644
--- a/source/blender/editors/gpencil/gpencil_edit.c
+++ b/source/blender/editors/gpencil/gpencil_edit.c
@@ -3672,9 +3672,9 @@ void GPENCIL_OT_stroke_smooth(wmOperatorType *ot)
 	prop = RNA_def_float(ot->srna, "factor", 0.5f, 0.0f, 2.0f, "Factor", "", 0.0f, 2.0f);
 	prop = RNA_def_boolean(ot->srna, "only_selected", true, "Only Selected",
 		"Smooth only selected points in the stroke");
-	prop = RNA_def_boolean(ot->srna, "smooth_position", true, "Smooth Position", "");
-	prop = RNA_def_boolean(ot->srna, "smooth_thickness", true, "Smooth Thickness", "");
-	prop = RNA_def_boolean(ot->srna, "smooth_strength", false, "Smooth Strength", "");
-	prop = RNA_def_boolean(ot->srna, "smooth_uv", false, "Smooth UV data", "");
+	prop = RNA_def_boolean(ot->srna, "smooth_position", true, "Position", "");
+	prop = RNA_def_boolean(ot->srna, "smooth_thickness", true, "Thickness", "");
+	prop = RNA_def_boolean(ot->srna, "smooth_strength", false, "Strength", "");
+	prop = RNA_def_boolean(ot->srna, "smooth_uv", false, "UV", "");
 
 }



More information about the Bf-blender-cvs mailing list