[Bf-blender-cvs] [aab3a0fda30] master: Fix UI message (no points and no phrases in tooltips please!).

Bastien Montagne noreply at git.blender.org
Tue May 30 11:43:55 CEST 2017


Commit: aab3a0fda306af2dbf7ca78a8ae1efe10510a61a
Author: Bastien Montagne
Date:   Tue May 30 11:42:28 2017 +0200
Branches: master
https://developer.blender.org/rBaab3a0fda306af2dbf7ca78a8ae1efe10510a61a

Fix UI message (no points and no phrases in tooltips please!).

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

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 451209a85b7..2df4b2cae54 100644
--- a/source/blender/editors/gpencil/gpencil_edit.c
+++ b/source/blender/editors/gpencil/gpencil_edit.c
@@ -750,8 +750,8 @@ void GPENCIL_OT_blank_frame_add(wmOperatorType *ot)
 	/* identifiers */
 	ot->name = "Insert Blank Frame";
 	ot->idname = "GPENCIL_OT_blank_frame_add";
-	ot->description = "Inserts a blank frame on the current frame. "
-	                  "All subsequently existing frames (if there are any) are shifted right by one frame.";
+	ot->description = "Inserts a blank frame on the current frame "
+	                  "(all subsequently existing frames, if any, are shifted right by one frame)";
 	
 	/* callbacks */
 	ot->exec = gp_blank_frame_add_exec;




More information about the Bf-blender-cvs mailing list