[Bf-blender-cvs] [17fa87aa5a1] greasepencil-object: Clean Boundary Fill: Clarify Labels/Tooltips

Joshua Leung noreply at git.blender.org
Wed Feb 7 03:14:17 CET 2018


Commit: 17fa87aa5a1edce98ae66dac9721b1b1981d8bb2
Author: Joshua Leung
Date:   Wed Feb 7 14:18:11 2018 +1300
Branches: greasepencil-object
https://developer.blender.org/rB17fa87aa5a1edce98ae66dac9721b1b1981d8bb2

Clean Boundary Fill: Clarify Labels/Tooltips

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

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

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

diff --git a/source/blender/editors/gpencil/gpencil_data.c b/source/blender/editors/gpencil/gpencil_data.c
index 501e40f79c5..6e800513fbc 100644
--- a/source/blender/editors/gpencil/gpencil_data.c
+++ b/source/blender/editors/gpencil/gpencil_data.c
@@ -495,15 +495,15 @@ static int gp_frame_clean_fill_exec(bContext *C, wmOperator *op)
 void GPENCIL_OT_frame_clean_fill(wmOperatorType *ot)
 {
 	static const EnumPropertyItem duplicate_mode[] = {
-	{ GP_FRAME_CLEAN_FILL_ACTIVE, "ACTIVE", 0, "Active", "Clean active frame only" },
-	{ GP_FRAME_CLEAN_FILL_ALL, "ALL", 0, "All", "Clean all frames in all layers" },
+	{ GP_FRAME_CLEAN_FILL_ACTIVE, "ACTIVE", 0, "Active Frame Only", "Clean active frame only" },
+	{ GP_FRAME_CLEAN_FILL_ALL, "ALL", 0, "All Frames", "Clean all frames in all layers" },
 	{ 0, NULL, 0, NULL, NULL }
 	};
 
 	/* identifiers */
 	ot->name = "Clean Fill Boundaries";
 	ot->idname = "GPENCIL_OT_frame_clean_fill";
-	ot->description = "Clean boundary fill stroke";
+	ot->description = "Remove 'no fill' boundary strokes";
 
 	/* callbacks */
 	ot->exec = gp_frame_clean_fill_exec;



More information about the Bf-blender-cvs mailing list