[Bf-blender-cvs] [e8d028c0af2] modifier-panels-ui: Use "Duplicate" Instead of "Copy"

Hans Goudey noreply at git.blender.org
Tue May 5 16:26:19 CEST 2020


Commit: e8d028c0af2fac1f751ab883290bfe53e2ac3b04
Author: Hans Goudey
Date:   Tue May 5 10:26:12 2020 -0400
Branches: modifier-panels-ui
https://developer.blender.org/rBe8d028c0af2fac1f751ab883290bfe53e2ac3b04

Use "Duplicate" Instead of "Copy"

===================================================================

M	source/blender/modifiers/intern/MOD_ui_common.c

===================================================================

diff --git a/source/blender/modifiers/intern/MOD_ui_common.c b/source/blender/modifiers/intern/MOD_ui_common.c
index f02fa0f2ad1..393c6de7c49 100644
--- a/source/blender/modifiers/intern/MOD_ui_common.c
+++ b/source/blender/modifiers/intern/MOD_ui_common.c
@@ -196,8 +196,10 @@ void modifier_panel_buttons(const bContext *C, Panel *panel)
             eModifierType_ParticleSystem,
             eModifierType_Cloth,
             eModifierType_Fluid)) {
-    uiItemO(
-        row, CTX_IFACE_(BLT_I18NCONTEXT_OPERATOR_DEFAULT, "Copy"), 0, "OBJECT_OT_modifier_copy");
+    uiItemO(row,
+            CTX_IFACE_(BLT_I18NCONTEXT_OPERATOR_DEFAULT, "Duplicate"),
+            0,
+            "OBJECT_OT_modifier_copy");
 
     row = uiLayoutRow(layout, false);
     uiLayoutSetScaleY(row, 0.2f);



More information about the Bf-blender-cvs mailing list