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-05-10 10:51:08 +0400
committerJoshua Leung <aligorith@gmail.com>2007-05-10 10:51:08 +0400
commit3c0348589cf591da6a0e23fbab5e93e52665b916 (patch)
tree9f191f194eaccdf6b91b52802c0c774a893b8d53 /source/blender/src/editipo_mods.c
parent85b0997d900266cd444431df36ecd64b07efbea0 (diff)
Bugfix #6674:
Action Editor: editing of action-channel keys is impossible if shapekeys are present for that object. Also, after toggling the 'swimmer' icon in the IPO editor header,on and then off again, then trying to expand/collapse/select/deselect the 'Shape' action channel, Blender would crash. Not really a showstopper, but still nice to fix. ;-)
Diffstat (limited to 'source/blender/src/editipo_mods.c')
-rw-r--r--source/blender/src/editipo_mods.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/editipo_mods.c b/source/blender/src/editipo_mods.c
index 9de9016253c..fe88d2da3c0 100644
--- a/source/blender/src/editipo_mods.c
+++ b/source/blender/src/editipo_mods.c
@@ -1182,8 +1182,8 @@ void borderselect_icu_key(IpoCurve *icu, float xmin, float xmax,
void borderselect_ipo_key(Ipo *ipo, float xmin, float xmax, int selectmode)
{
/* Selects all bezier triples in each Ipocurve of the
- * Ipo between times xmin and xmax, using the selection mode.
- */
+ * Ipo between times xmin and xmax, using the selection mode.
+ */
IpoCurve *icu;
int (*select_function)(BezTriple *);
@@ -1193,8 +1193,8 @@ void borderselect_ipo_key(Ipo *ipo, float xmin, float xmax, int selectmode)
return;
/* Set the selection function based on the
- * selection mode.
- */
+ * selection mode.
+ */
switch(selectmode) {
case SELECT_ADD:
select_function = select_bezier_add;