[Bf-blender-cvs] [ff1d307e25d] master: Fix: Alphabeticalize Object Modifiers

Aaron Carlisle noreply at git.blender.org
Mon Feb 17 21:04:21 CET 2020


Commit: ff1d307e25d5632a8d55f8059c394e4fa1e8115f
Author: Aaron Carlisle
Date:   Mon Feb 17 15:03:27 2020 -0500
Branches: master
https://developer.blender.org/rBff1d307e25d5632a8d55f8059c394e4fa1e8115f

Fix: Alphabeticalize Object Modifiers

Reported by Dalai on the live stream

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

M	source/blender/makesrna/intern/rna_modifier.c

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

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",



More information about the Bf-blender-cvs mailing list