From 3dbae624d372accad4a7246ae6a8ad002634a03e Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Wed, 20 Apr 2005 08:26:22 +0000 Subject: * 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. --- source/blender/src/transform_constraints.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/src/transform_constraints.c') 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); -- cgit v1.2.3