[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31409] trunk/blender/release/scripts/ui/ properties_particle.py: * Put "Custom Properties" panel to bottom in particle buttons as well.

Thomas Dinges dingto at gmx.de
Tue Aug 17 11:05:45 CEST 2010


Revision: 31409
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31409
Author:   dingto
Date:     2010-08-17 11:05:44 +0200 (Tue, 17 Aug 2010)

Log Message:
-----------
* Put "Custom Properties" panel to bottom in particle buttons as well. 

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/properties_particle.py

Modified: trunk/blender/release/scripts/ui/properties_particle.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_particle.py	2010-08-17 08:56:47 UTC (rev 31408)
+++ trunk/blender/release/scripts/ui/properties_particle.py	2010-08-17 09:05:44 UTC (rev 31409)
@@ -136,11 +136,6 @@
                     split.prop(psys, "reactor_target_particle_system", text="Particle System")
 
 
-class PARTICLE_PT_custom_props(ParticleButtonsPanel, PropertyPanel, bpy.types.Panel):
-    COMPAT_ENGINES = {'BLENDER_RENDER'}
-    _context_path = "particle_system.settings"
-
-
 class PARTICLE_PT_emission(ParticleButtonsPanel, bpy.types.Panel):
     bl_label = "Emission"
     COMPAT_ENGINES = {'BLENDER_RENDER'}
@@ -1078,6 +1073,11 @@
         row.prop(psys, "vertex_group_field_negate", text="")
 
 
+class PARTICLE_PT_custom_props(ParticleButtonsPanel, PropertyPanel, bpy.types.Panel):
+    COMPAT_ENGINES = {'BLENDER_RENDER'}
+    _context_path = "particle_system.settings"
+
+
 def register():
     pass
 





More information about the Bf-blender-cvs mailing list