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:
authorCampbell Barton <ideasman42@gmail.com>2009-11-28 16:33:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-28 16:33:56 +0300
commita2b370dd6f55d6114da3ec1d86788e9c9786822f (patch)
tree8f5adc8b06e8f9506155e4906dd7ff5d11fdc987 /source/blender/editors/physics
parentc4933cccfa74836ff88a6904abfaf52c8e0cde87 (diff)
py/rna api
- object.modifiers.add()/remove() - armature.edit_bones.active wasnt named correctly
Diffstat (limited to 'source/blender/editors/physics')
-rw-r--r--source/blender/editors/physics/particle_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/physics/particle_object.c b/source/blender/editors/physics/particle_object.c
index 1ef3ffa6c34..d29280876d0 100644
--- a/source/blender/editors/physics/particle_object.c
+++ b/source/blender/editors/physics/particle_object.c
@@ -69,7 +69,7 @@ static int particle_system_add_exec(bContext *C, wmOperator *op)
if(!scene || !ob)
return OPERATOR_CANCELLED;
- object_add_particle_system(scene, ob);
+ object_add_particle_system(scene, ob, NULL);
WM_event_add_notifier(C, NC_OBJECT|ND_DRAW, ob);
return OPERATOR_FINISHED;