UI: Sort "Volume to Mesh" and "Mesh to Volume" in alphabetical order

This commit is contained in:
Pablo Vazquez 2020-10-20 00:12:45 +02:00
parent c6c4925771
commit 31108f9359
1 changed files with 10 additions and 10 deletions

View File

@ -151,6 +151,11 @@ const EnumPropertyItem rna_enum_object_modifier_type_items[] = {
ICON_MOD_MIRROR,
"Mirror",
"Mirror along the local X, Y and/or Z axes, over the object origin"},
{eModifierType_MeshToVolume,
"MESH_TO_VOLUME",
ICON_VOLUME_DATA,
"Mesh to Volume",
""}, /* TODO: Use correct icon. */
{eModifierType_Multires,
"MULTIRES",
ICON_MOD_MULTIRES,
@ -183,6 +188,11 @@ const EnumPropertyItem rna_enum_object_modifier_type_items[] = {
ICON_MOD_TRIANGULATE,
"Triangulate",
"Convert all polygons to triangles"},
{eModifierType_VolumeToMesh,
"VOLUME_TO_MESH",
ICON_VOLUME_DATA,
"Volume to Mesh",
""}, /* TODO: Use correct icon. */
{eModifierType_Weld,
"WELD",
ICON_AUTOMERGE_OFF,
@ -193,16 +203,6 @@ const EnumPropertyItem rna_enum_object_modifier_type_items[] = {
ICON_MOD_WIREFRAME,
"Wireframe",
"Convert faces into thickened edges"},
{eModifierType_MeshToVolume,
"MESH_TO_VOLUME",
ICON_VOLUME_DATA,
"Mesh to Volume",
""}, /* TODO: Use correct icon. */
{eModifierType_VolumeToMesh,
"VOLUME_TO_MESH",
ICON_VOLUME_DATA,
"Volume to Mesh",
""}, /* TODO: Use correct icon. */
{0, "", 0, N_("Deform"), ""},
{eModifierType_Armature,
"ARMATURE",