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:
authorJanne Karhu <jhkarh@gmail.com>2011-03-23 11:52:53 +0300
committerJanne Karhu <jhkarh@gmail.com>2011-03-23 11:52:53 +0300
commit55b631516642d3269197fd36495844677a102630 (patch)
tree6cb547e72961faef95a533d92e899e7f3bbf61f7 /source/blender/editors/physics
parent6984924b96f1dc7c2bb43b0e0330ed8cd13d5159 (diff)
Fix for [#26580] Rekey deselects active verts
* Just a missing flag after rekeying.
Diffstat (limited to 'source/blender/editors/physics')
-rw-r--r--source/blender/editors/physics/particle_edit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c
index d3e61e785e1..697f016f2d4 100644
--- a/source/blender/editors/physics/particle_edit.c
+++ b/source/blender/editors/physics/particle_edit.c
@@ -1970,6 +1970,7 @@ static void rekey_particle(PEData *data, int pa_index)
for(k=0, key=pa->hair; k<pa->totkey; k++, key++, ekey++) {
ekey->co= key->co;
ekey->time= &key->time;
+ ekey->flag |= PEK_SELECT;
if(!(psys->flag & PSYS_GLOBAL_HAIR))
ekey->flag |= PEK_USE_WCO;
}