== Action Editor - Sample Keyframes Bugfix ==

Improved the behaviour of this tool. Now it works correctly in nearly all cases (x----x----o---x----x  situations don't completely work yet though).
This commit is contained in:
2008-01-08 23:32:13 +00:00
parent 974819aa03
commit 494ca21103

View File

@@ -1206,8 +1206,8 @@ void sample_action_keys (void)
}
/* as we added keyframes, we need to compensate so that bezt is at the right place */
bezt = icu->bezt + i + range;
i += range;
bezt = icu->bezt + i + range - 1;
i += (range - 1);
/* bezt was selected, so it now marks the start of a whole new chain to search */
start= bezt;