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>2009-01-27 08:04:23 +0300
committerJoshua Leung <aligorith@gmail.com>2009-01-27 08:04:23 +0300
commit83ea5824787145f69c7346da3df91bcc841b5981 (patch)
tree453acd133f7b63a51f64c64369c15e126d5ac984 /source/blender/editors/space_ipo/ipo_draw.c
parent6e6bd16bf194dc7c92e44c87b049966ecfdfa490 (diff)
Graph Editor - Selection Tools
* Mouse-Select and DeSelect All work again * Added access to constraint 'influence' value
Diffstat (limited to 'source/blender/editors/space_ipo/ipo_draw.c')
-rw-r--r--source/blender/editors/space_ipo/ipo_draw.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/editors/space_ipo/ipo_draw.c b/source/blender/editors/space_ipo/ipo_draw.c
index 7b86987eced..a1c0f37506c 100644
--- a/source/blender/editors/space_ipo/ipo_draw.c
+++ b/source/blender/editors/space_ipo/ipo_draw.c
@@ -125,16 +125,15 @@ static void draw_fcurve_handle_control (float x, float y, float xscale, float ys
static GLuint displist=0;
/* initialise round circle shape */
- // FIXME: sometimes, this will draw incorrectly (i.e. a scaled copy shows up at the origin)
if (displist == 0) {
GLUquadricObj *qobj;
displist= glGenLists(1);
- glNewList(displist, GL_COMPILE_AND_EXECUTE);
+ glNewList(displist, GL_COMPILE);
qobj = gluNewQuadric();
gluQuadricDrawStyle(qobj, GLU_SILHOUETTE);
- gluDisk(qobj, 0.07, 0.6, 8, 1);
+ gluDisk(qobj, 0, 0.7, 8, 1);
gluDeleteQuadric(qobj);
glEndList();