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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-04 17:24:23 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-04 18:08:04 +0300
commit708eb5501815e1dadb168d87573cde3d97192e83 (patch)
tree09661c6036be8b485af30c7d0aae3e134f66dbc2 /source/blender/editors/space_text
parent10d9a2494fc5e28142a82e515e1f5dcaa3223d5a (diff)
UI: make text editor Text menu consistent with menus for .blend and images.
Diffstat (limited to 'source/blender/editors/space_text')
-rw-r--r--source/blender/editors/space_text/text_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c
index 0cc0037567a..c2f3be0d881 100644
--- a/source/blender/editors/space_text/text_ops.c
+++ b/source/blender/editors/space_text/text_ops.c
@@ -186,7 +186,7 @@ static int text_new_exec(bContext *C, wmOperator *UNUSED(op))
void TEXT_OT_new(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Create Text Block";
+ ot->name = "New Text";
ot->idname = "TEXT_OT_new";
ot->description = "Create a new text data-block";
@@ -280,7 +280,7 @@ static int text_open_invoke(bContext *C, wmOperator *op, const wmEvent *UNUSED(e
void TEXT_OT_open(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Open Text Block";
+ ot->name = "Open Text";
ot->idname = "TEXT_OT_open";
ot->description = "Open a new text data-block";