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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-11-27 14:17:52 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-11-27 14:17:52 +0300
commit01e2395e057b6fd4c601312bb2feb8bd2888692b (patch)
tree70f6692816acf4ce8fae210a9136274393c49e4b /source/blender/src/buttons_object.c
parente39b5f790d806258c26827fad18f40b5815f6b3b (diff)
Particles
========= - Fix for bug #7840: adding particle system to nurbs, curves crashes. Now simply doesn't allow to add a particle system to a non-mesh object, the current code does not support it. - Fix for bug #7834: deleting vertices of an object with a particle system crashes. Fixed by disabling particle display for objects in editmode. - Fix for the particle add brush on subsurfed objects.
Diffstat (limited to 'source/blender/src/buttons_object.c')
-rw-r--r--source/blender/src/buttons_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/buttons_object.c b/source/blender/src/buttons_object.c
index 455b41d3f0e..3a3d653fdf2 100644
--- a/source/blender/src/buttons_object.c
+++ b/source/blender/src/buttons_object.c
@@ -4656,7 +4656,7 @@ void particle_panels()
ob=OBACT;
- if(ob) {
+ if(ob && ob->type==OB_MESH) {
object_panel_particle_system(ob);
psys=psys_get_current(ob);