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>2005-04-20 12:26:22 +0400
committerMatt Ebb <matt@mke3.net>2005-04-20 12:26:22 +0400
commit3dbae624d372accad4a7246ae6a8ad002634a03e (patch)
treeaa54580e10626b77550a6b75ec6ab5741a7f5b9f /source/blender/src/transform_constraints.c
parent4126e4e34518243c4272804e10b3d157175b4691 (diff)
* Brought over a 'mode' parameter to drawcircball to prevent
further loss of Hos' hair during tuhopuu merges. This doesn't change any user functionality. 'Mode' can be GL_LINE_LOOP for a circle outline (as it currently is), GL_POLYGON for a filled circle, or whatever gl mode you like.
Diffstat (limited to 'source/blender/src/transform_constraints.c')
-rwxr-xr-xsource/blender/src/transform_constraints.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/transform_constraints.c b/source/blender/src/transform_constraints.c
index 766b8382898..9e3104f9b72 100755
--- a/source/blender/src/transform_constraints.c
+++ b/source/blender/src/transform_constraints.c
@@ -696,7 +696,7 @@ void BIF_drawPropCircle()
mygetmatrix(tmat);
Mat4Invert(imat, tmat);
- drawcircball(t->center, t->propsize, imat);
+ drawcircball(GL_LINE_LOOP, t->center, t->propsize, imat);
/* if editmode we restore */
if(G.obedit) myloadmatrix(G.vd->viewmat);