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>2021-04-19 19:11:48 +0300
committerHans Goudey <h.goudey@me.com>2021-04-19 19:11:48 +0300
commit6f761c7110af8f90457f8c13553c5e26d7bc270f (patch)
tree1d6c47a0966b3bf489d72282f1cb3e3f413dae6d /source/blender/editors
parent8245805ce3dd23386d7a478ae2f4cfba3b503334 (diff)
Fix T87392: Copy modifier to selected does not do anything
This was caused by a stupid copy & paste error in rB9f323e9bf79fbf4157a.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/object/object_modifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c
index b28b7478721..2c279eb64ee 100644
--- a/source/blender/editors/object/object_modifier.c
+++ b/source/blender/editors/object/object_modifier.c
@@ -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;
}