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:
authorCampbell Barton <ideasman42@gmail.com>2020-12-09 06:10:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-12-09 06:10:30 +0300
commit5cdfceaa1a7efb71d528a04a01cb74181f1aa8e4 (patch)
treecdb4a5a88a9ce3a0241b76dabe2e5b7edbe7d5b7 /source/blender/makesrna/intern/rna_modifier.c
parent9b11a7776f2ab8ac42e835a17ed7566fd80a4b8c (diff)
Cleanup: use common 'MOD_WELD_MODE_' prefix
Diffstat (limited to 'source/blender/makesrna/intern/rna_modifier.c')
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 4ce859ddce9..99304d29e00 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -6232,8 +6232,8 @@ static void rna_def_modifier_weld(BlenderRNA *brna)
PropertyRNA *prop;
static const EnumPropertyItem mode_items[] = {
- {MOD_WELD_ALL_MODE, "ALL", 0, "All", "Full merge by distance"},
- {MOD_WELD_CONNECTED_MODE, "CONNECTED", 0, "Connected", "Only merge along the edges"},
+ {MOD_WELD_MODE_ALL, "ALL", 0, "All", "Full merge by distance"},
+ {MOD_WELD_MODE_CONNECTED, "CONNECTED", 0, "Connected", "Only merge along the edges"},
{0, NULL, 0, NULL, NULL},
};