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:
authorThomas Dinges <blender@dingto.org>2010-08-17 13:05:44 +0400
committerThomas Dinges <blender@dingto.org>2010-08-17 13:05:44 +0400
commit7394e1a312ae4ac8194126e724b6546f190c5d37 (patch)
tree751b9ca1b91bc61d4dd3355b662a5c661c317f9c /release
parent2e2592127e8cd63a1bbae1e6c2409a4774da902d (diff)
* Put "Custom Properties" panel to bottom in particle buttons as well.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_particle.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/release/scripts/ui/properties_particle.py b/release/scripts/ui/properties_particle.py
index 72e804a1cef..ee550f42a5e 100644
--- a/release/scripts/ui/properties_particle.py
+++ b/release/scripts/ui/properties_particle.py
@@ -136,11 +136,6 @@ class PARTICLE_PT_context_particles(ParticleButtonsPanel, bpy.types.Panel):
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 @@ class PARTICLE_PT_vertexgroups(ParticleButtonsPanel, bpy.types.Panel):
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