Commit b081e954 by Michael Alexsander

Fix crash when changing time value of multiple animation keys at once via inspector

parent 43f07673
......@@ -754,14 +754,17 @@ public:
for (Map<int, List<float>>::Element *E = key_ofs_map.front(); E; E = E->next()) {
int key = 0;
for (List<float>::Element *F = E->value().front(); F; F = F->next()) {
float key_ofs = F->get();
if (from != key_ofs)
if (from != key_ofs) {
key++;
continue;
}
int track = E->key();
key_ofs_map[track][key_ofs] = to;
key_ofs_map[track][key] = to;
if (setting)
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment