Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2017-05-30 12:42:28 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-05-30 12:42:55 +0300
commitaab3a0fda306af2dbf7ca78a8ae1efe10510a61a (patch)
tree0a614af0f4290e20063bd3e4e49680759449345b /source/blender/editors/gpencil
parent31bc9beeac9f7d2d5a272e77fa0e0ec5c22d7291 (diff)
Fix UI message (no points and no phrases in tooltips please!).
Diffstat (limited to 'source/blender/editors/gpencil')
-rw-r--r--source/blender/editors/gpencil/gpencil_edit.c4
1 files changed, 2 insertions, 2 deletions
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;