From dee302354f372d3357c49f5769581e4146a5d313 Mon Sep 17 00:00:00 2001 From: mfranz Date: Sat, 10 Jun 2006 15:25:48 +0000 Subject: [PATCH] the special line width doesn't make much sense, as it's only applied to the arrow head marks. It was probably thought for all lines, but as those are wide enough, I just comment that out for now. --- src/Cockpit/hud.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Cockpit/hud.cxx b/src/Cockpit/hud.cxx index 4f5157289..5962b075e 100644 --- a/src/Cockpit/hud.cxx +++ b/src/Cockpit/hud.cxx @@ -960,9 +960,9 @@ void drawHUD() glEnable(GL_LINE_SMOOTH); glAlphaFunc(GL_GREATER, HUD->alphaClamp()); glHint(GL_LINE_SMOOTH_HINT, GL_DONT_CARE); - glLineWidth(1.5); + //glLineWidth(1.5); } else { - glLineWidth(1.0); + //glLineWidth(1.0); } HUD->setColor(); @@ -1034,7 +1034,7 @@ void drawHUD() if (HUD->isAntialiased()) { glDisable(GL_ALPHA_TEST); glDisable(GL_LINE_SMOOTH); - glLineWidth(1.0); + //glLineWidth(1.0); } glEnable(GL_DEPTH_TEST); -- 2.39.5