[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [40087] trunk/blender/source/blender/ makesrna/intern/rna_modifier.c: NAVMESH Modifier was not alphabetical correct in the modifier list, as the others.

Thomas Dinges blender at dingto.org
Sat Sep 10 09:14:35 CEST 2011


Revision: 40087
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=40087
Author:   dingto
Date:     2011-09-10 07:14:35 +0000 (Sat, 10 Sep 2011)
Log Message:
-----------
NAVMESH Modifier was not alphabetical correct in the modifier list, as the others. 

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_modifier.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_modifier.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2011-09-10 04:21:58 UTC (rev 40086)
+++ trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2011-09-10 07:14:35 UTC (rev 40087)
@@ -91,12 +91,12 @@
 	{eModifierType_Collision, "COLLISION", ICON_MOD_PHYSICS, "Collision", ""},
 	{eModifierType_Explode, "EXPLODE", ICON_MOD_EXPLODE, "Explode", ""},
 	{eModifierType_Fluidsim, "FLUID_SIMULATION", ICON_MOD_FLUIDSIM, "Fluid Simulation", ""},
+	{eModifierType_NavMesh, "NAVMESH", ICON_MOD_PHYSICS, "Navigation mesh", ""},
 	{eModifierType_ParticleInstance, "PARTICLE_INSTANCE", ICON_MOD_PARTICLES, "Particle Instance", ""},
 	{eModifierType_ParticleSystem, "PARTICLE_SYSTEM", ICON_MOD_PARTICLES, "Particle System", ""},
 	{eModifierType_Smoke, "SMOKE", ICON_MOD_SMOKE, "Smoke", ""},
 	{eModifierType_Softbody, "SOFT_BODY", ICON_MOD_SOFT, "Soft Body", ""},
 	{eModifierType_Surface, "SURFACE", ICON_MOD_PHYSICS, "Surface", ""},
-	{eModifierType_NavMesh, "NAVMESH", ICON_MOD_PHYSICS, "Navigation mesh", ""},
 	{0, NULL, 0, NULL, NULL}};
 
 #ifdef RNA_RUNTIME




More information about the Bf-blender-cvs mailing list