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:
authorJoshua Leung <aligorith@gmail.com>2007-08-22 12:52:57 +0400
committerJoshua Leung <aligorith@gmail.com>2007-08-22 12:52:57 +0400
commit59016f9f5da298568f0d7c1a9af98b03aa6477ad (patch)
treec949cd0e45ee11a8c57c4528546233edf8dfaf0b /source/blender/src/editipo_mods.c
parent941ee4139ea1583b6c4e83d5ed7ad693f8709db9 (diff)
Bugfix #7083:
The menu entries for changing Interpolation and Extrapolation modes in the Action Editor weren't working properly (at all).
Diffstat (limited to 'source/blender/src/editipo_mods.c')
-rw-r--r--source/blender/src/editipo_mods.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/src/editipo_mods.c b/source/blender/src/editipo_mods.c
index 2fc4f458e01..1f12f3863fe 100644
--- a/source/blender/src/editipo_mods.c
+++ b/source/blender/src/editipo_mods.c
@@ -872,9 +872,8 @@ void setipotype_ipo(Ipo *ipo, int code)
void setexprap_ipoloop(Ipo *ipo, int code)
{
IpoCurve *icu;
-
- /* Loop through each curve in the Ipo
- */
+
+ /* Loop through each curve in the Ipo */
for (icu=ipo->curve.first; icu; icu=icu->next)
icu->extrap= code;
}