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
path: root/source
diff options
context:
space:
mode:
authorJanne Karhu <jhkarh@gmail.com>2010-10-19 13:28:38 +0400
committerJanne Karhu <jhkarh@gmail.com>2010-10-19 13:28:38 +0400
commita781157047a5085fbe6d2a836571b6bff9871d02 (patch)
tree00a415bdd912f630b190e76e573f1ac93bc9d5f6 /source
parent53c1d1a18a6d79e1ccbd3006a0d8c4e46392a983 (diff)
Fix for bugs [#24316] Changing particles path step in particle mode makes lines invisible and [#24318] Particle lines disappear if view particles are enabled.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_view3d/drawobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c
index 5fabe6f2496..bc340ef5b4b 100644
--- a/source/blender/editors/space_view3d/drawobject.c
+++ b/source/blender/editors/space_view3d/drawobject.c
@@ -5999,6 +5999,7 @@ void draw_object(Scene *scene, ARegion *ar, View3D *v3d, Base *base, int flag)
PTCacheEdit *edit = PE_create_current(scene, ob);
if(edit) {
glLoadMatrixf(rv3d->viewmat);
+ draw_update_ptcache_edit(scene, ob, edit);
draw_ptcache_edit(scene, v3d, edit);
glMultMatrixf(ob->obmat);
}