Skip to content

Commit

Permalink
Changed background to darker grey (works better with both default blu…
Browse files Browse the repository at this point in the history
…e and selected white).
  • Loading branch information
sbriseid committed Dec 7, 2011
1 parent d2bf540 commit d73884a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion viewlib/src/gvView.C
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ void gvView::initializeGL()
// Setting the background color.
// glClearColor(0.0f, 0.0f, 0.0f, 1.0f); // black
// glClearColor(0.95f, 0.95f, 0.95f, 1.0f); // soft white
glClearColor(0.7f, 0.7f, 0.7f, 1.0f); // light gray
// glClearColor(0.7f, 0.7f, 0.7f, 1.0f); // light gray
glClearColor(0.5f, 0.5f, 0.5f, 1.0f); // dark gray

glShadeModel( GL_SMOOTH );

Expand Down

0 comments on commit d73884a

Please sign in to comment.