diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-26 12:16:41 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-26 12:16:41 (GMT) |
commit | 1047bd0700842ac2f5f747fe7e5417a0336244a7 (patch) | |
tree | 5f2498ae6f1a4eb0046ede3e28ec7785fa08375b /glview.cc | |
parent | dc1450e47ff30b2b137c0fb65c5e9798f098a419 (diff) |
Clifford Wolf:
Typo fix s/axis/axes/g
git-svn-id: http://svn.clifford.at/openscad/trunk@121 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'glview.cc')
-rw-r--r-- | glview.cc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -42,7 +42,7 @@ GLView::GLView(QWidget *parent) : QGLWidget(parent) last_mouse_y = 0; orthomode = false; - showaxis = false; + showaxes = false; showcrosshairs = false; renderfunc = NULL; @@ -242,7 +242,7 @@ void GLView::paintGL() glTranslated(object_trans_x, object_trans_y, object_trans_z); - if (showaxis) + if (showaxes) { glLineWidth(1); glColor3d(0.5, 0.5, 0.5); @@ -266,7 +266,7 @@ void GLView::paintGL() if (renderfunc) renderfunc(renderfunc_vp); - if (showaxis) + if (showaxes) { glDepthFunc(GL_ALWAYS); |