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:
authorMatt Ebb <matt@mke3.net>2004-09-21 08:09:07 +0400
committerMatt Ebb <matt@mke3.net>2004-09-21 08:09:07 +0400
commite5e621ad242824d2fb3be4a05425a3970bd9c1ae (patch)
tree6a20de3f51f067b9af6107889069bd62ab32ac5f /source/blender/src/editnla.c
parent8e3f7fa6f5ee14b1907534d9bf290b04c3487b7a (diff)
Added Hos' NLA move up/down to the NLA Strip menu. Also enabled
'Strip Properties' there again.
Diffstat (limited to 'source/blender/src/editnla.c')
-rw-r--r--source/blender/src/editnla.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/editnla.c b/source/blender/src/editnla.c
index e4d86eea879..52fb920dbab 100644
--- a/source/blender/src/editnla.c
+++ b/source/blender/src/editnla.c
@@ -102,7 +102,7 @@ extern int nla_filter (Base* base, int flags); /* From drawnla.c */
/* ******************** SPACE: NLA ********************** */
-static void shift_nlastrips_up(void) {
+void shift_nlastrips_up(void) {
Base *base;
bActionStrip *strip, *prevstrip;
@@ -141,7 +141,7 @@ static void shift_nlastrips_up(void) {
}
-static void shift_nlastrips_down(void) {
+void shift_nlastrips_down(void) {
Base *base;
bActionStrip *strip, *nextstrip;