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>2012-05-05 21:10:51 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-05-05 21:10:51 +0400
commitf3230c7897951941a562be97f42e79f68fb81761 (patch)
tree90bfdfb3d9a225c39ffe87c0c116dd35e37c9986 /source/blender/editors/space_text
parent6292fb4cbd43c087c06886be7517a0dc07da9b43 (diff)
Second part of fix for [#31157]: Some (actually, 172) operators have no tooltip.
About 30 undocumented ops remaining...
Diffstat (limited to 'source/blender/editors/space_text')
-rw-r--r--source/blender/editors/space_text/text_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c
index d38a4caeab7..3116d94df87 100644
--- a/source/blender/editors/space_text/text_ops.c
+++ b/source/blender/editors/space_text/text_ops.c
@@ -1361,7 +1361,7 @@ void TEXT_OT_move_lines(wmOperatorType *ot)
/* identifiers */
ot->name = "Move Lines";
ot->idname = "TEXT_OT_move_lines";
- ot->description = "Moves the currently selected line(s) up/down";
+ ot->description = "Move the currently selected line(s) up/down";
/* api callbacks */
ot->exec = move_lines_exec;