"Fix" for [#33903] Wrong description string in "remove vertices from vertex group" function - just making the tooltip describe both possible actions by this op!

This commit is contained in:
Bastien Montagne
2013-01-17 13:29:32 +00:00
parent 0193c88083
commit b8116ed659

View File

@@ -2725,7 +2725,7 @@ void OBJECT_OT_vertex_group_remove_from(wmOperatorType *ot)
/* identifiers */
ot->name = "Remove from Vertex Group";
ot->idname = "OBJECT_OT_vertex_group_remove_from";
ot->description = "Remove the selected vertices from the active vertex group";
ot->description = "Remove the selected vertices from active or all vertex group(s)";
/* api callbacks */
ot->poll = vertex_group_poll_edit_or_wpaint_vert_select;