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:
authorHans Goudey <h.goudey@me.com>2020-06-10 18:23:03 +0300
committerHans Goudey <h.goudey@me.com>2020-06-10 18:23:03 +0300
commit2d695367a7880faac46b583686dfaa4d65f7ec14 (patch)
treea4af75dcf10291f7ca62fcda6bc092ab3a4653d1 /source/blender/editors/object
parenta9dfad831b8b616c7f7c6b17c2764f8610926ddb (diff)
UI: More specific modifier move to index operator description
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_modifier.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c
index 0bd49f74db9..a6c5814e88a 100644
--- a/source/blender/editors/object/object_modifier.c
+++ b/source/blender/editors/object/object_modifier.c
@@ -1259,7 +1259,8 @@ static int modifier_move_to_index_invoke(bContext *C, wmOperator *op, const wmEv
void OBJECT_OT_modifier_move_to_index(wmOperatorType *ot)
{
ot->name = "Move Active Modifier to Index";
- ot->description = "Move the active modifier to an index in the stack";
+ ot->description =
+ "Change the modifier's index in the stack so it evaluates after the set number of others";
ot->idname = "OBJECT_OT_modifier_move_to_index";
ot->invoke = modifier_move_to_index_invoke;