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:
authorToni Alatalo <antont@kyperjokki.fi>2005-11-17 21:26:41 +0300
committerToni Alatalo <antont@kyperjokki.fi>2005-11-17 21:26:41 +0300
commitf3c9dce8e3e18da1cb77e0e17a4e58da8c4b5a14 (patch)
treeee1335f57e8502b5df2151996224797f2f27c17a /source/blender/src/editnla.c
parent502fc2da31662beba7c84dc804f78e2ff74ac700 (diff)
this one bothered Basse here at Orange: NLA snap strip to frame missed snapping the end part, was just a line missing.
Diffstat (limited to 'source/blender/src/editnla.c')
-rw-r--r--source/blender/src/editnla.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/editnla.c b/source/blender/src/editnla.c
index 645ac37c1e1..b336c7521e4 100644
--- a/source/blender/src/editnla.c
+++ b/source/blender/src/editnla.c
@@ -239,6 +239,7 @@ void snap_action_strips(void)
for (strip = base->object->nlastrips.last; strip; strip=strip->prev) {
if (strip->flag & ACTSTRIP_SELECT) {
strip->start= floor(strip->start+0.5);
+ strip->end= floor(strip->end+0.5);
}
}
}