Fix T87392: Copy modifier to selected does not do anything

This was caused by a stupid copy & paste error in rB9f323e9bf79fbf4157a.
This commit is contained in:
Hans Goudey 2021-04-19 11:11:48 -05:00
parent 8245805ce3
commit 6f761c7110
Notes: blender-bot 2023-02-14 04:39:18 +01:00
Referenced by issue #87392, Modifier: Copy to selected does not do anything
1 changed files with 1 additions and 1 deletions

View File

@ -1750,7 +1750,7 @@ static int modifier_copy_to_selected_invoke(bContext *C, wmOperator *op, const w
{
int retval;
if (edit_modifier_invoke_properties_with_hover_no_active(C, op, event, &retval)) {
return modifier_set_active_exec(C, op);
return modifier_copy_to_selected_exec(C, op);
}
return retval;
}