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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-02-17 23:03:27 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-02-17 23:04:01 +0300
commitff1d307e25d5632a8d55f8059c394e4fa1e8115f (patch)
tree0fa96f6f1302f473c7fece0580df5ef9a5437539
parent00227edf4c1b1e3be1aa0d235a4588a7d3024968 (diff)
Fix: Alphabeticalize Object Modifiers
Reported by Dalai on the live stream
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 96c9242df12..654cb5f99fc 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -182,16 +182,16 @@ const EnumPropertyItem rna_enum_object_modifier_type_items[] = {
ICON_MOD_TRIANGULATE,
"Triangulate",
"Convert all polygons to triangles"},
+ {eModifierType_Weld,
+ "WELD",
+ ICON_AUTOMERGE_OFF,
+ "Weld",
+ "Find groups of vertices closer then dist and merges them together"},
{eModifierType_Wireframe,
"WIREFRAME",
ICON_MOD_WIREFRAME,
"Wireframe",
"Convert faces into thickened edges"},
- {eModifierType_Weld,
- "WELD",
- ICON_AUTOMERGE_OFF,
- "Weld",
- "Find groups of vertices closer then dist and merges them together"},
{0, "", 0, N_("Deform"), ""},
{eModifierType_Armature,
"ARMATURE",