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:
authorAlexander Ewering <blender@instinctive.de>2007-01-16 01:31:22 +0300
committerAlexander Ewering <blender@instinctive.de>2007-01-16 01:31:22 +0300
commit71a503f31d9d15ae6e1a2f7d579bd28c677b4dd3 (patch)
tree76354ffa9b1f995334f74afb8ffb387fd7bc2242 /source/blender/src
parent25267023684c0d2165dfe659f4f7db5b22c76193 (diff)
Further tweaks to the textframe drawing code... it was unnecessarily
complicated...
Diffstat (limited to 'source/blender/src')
-rw-r--r--source/blender/src/drawobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawobject.c b/source/blender/src/drawobject.c
index 63124bbb207..4f7813ce556 100644
--- a/source/blender/src/drawobject.c
+++ b/source/blender/src/drawobject.c
@@ -3951,7 +3951,7 @@ void draw_object(Base *base, int flag)
else
BIF_ThemeColor(TH_WIRE);
vec1[0] = cu->tb[i].x;
- vec1[1] = cu->tb[i].y + cu->linedist*cu->fsize;
+ vec1[1] = cu->tb[i].y + cu->fsize;
vec1[2] = 0.001;
glBegin(GL_LINE_STRIP);
glVertex3fv(vec1);