From 2d695367a7880faac46b583686dfaa4d65f7ec14 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Wed, 10 Jun 2020 11:23:03 -0400 Subject: [PATCH] UI: More specific modifier move to index operator description --- source/blender/editors/object/object_modifier.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;