Fixed wire cube overlay not drawn with right line width

This commit is contained in:
Atlante45 2014-04-18 15:59:37 -07:00
parent aa73527157
commit b098a7a294

View file

@ -40,6 +40,7 @@ void Cube3DOverlay::render() {
if (_isSolid) {
glutSolidCube(_size);
} else {
glLineWidth(_lineWidth);
glutWireCube(_size);
}
glPopMatrix();