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:
authorSimon Clitherow <aphex@nildram.co.uk>2003-03-02 17:14:03 +0300
committerSimon Clitherow <aphex@nildram.co.uk>2003-03-02 17:14:03 +0300
commitcf741a99a9120095f6d6578efcdf3d997385c353 (patch)
treeecd961773eb0a1a9a5bc1bc32771c4da49fd04a8 /source/blender/src/editcurve.c
parent7a4196a86d9d56c44d16867e4be826cc7fd318dc (diff)
Applied curve editing bugfix submitted by Klaus Stengel (nathanel)
http://projects.blender.org/tracker/index.php?func=detail&aid=100&group_id=9&atid=127
Diffstat (limited to 'source/blender/src/editcurve.c')
-rw-r--r--source/blender/src/editcurve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editcurve.c b/source/blender/src/editcurve.c
index 4bd29cd8cda..a997b9faa6c 100644
--- a/source/blender/src/editcurve.c
+++ b/source/blender/src/editcurve.c
@@ -3949,7 +3949,7 @@ void clever_numbuts_curve()
do_clever_numbuts("Active HandlePoint", 3, REDRAW);
}
else if(bezt->f3 & 1) {
- add_numbut(0, NUM|FLO, "LocX:", -G.vd->far, G.vd->far, bezt->vec[0], 0);
+ add_numbut(0, NUM|FLO, "LocX:", -G.vd->far, G.vd->far, bezt->vec[2], 0);
add_numbut(1, NUM|FLO, "LocY:", -G.vd->far, G.vd->far, bezt->vec[2]+1, 0);
add_numbut(2, NUM|FLO, "LocZ:", -G.vd->far, G.vd->far, bezt->vec[2]+2, 0);