From 63537d1e77df371f67a3fdcd7e7e754da0c1fca7 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Sun, 15 Jun 2003 19:08:50 +0000 Subject: [PATCH] - fixed error, in 'z buffer' mode the bg color in 3d view was too bright --- source/blender/src/drawview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/src/drawview.c b/source/blender/src/drawview.c index 7efe8c03788..f12cfb5f14c 100644 --- a/source/blender/src/drawview.c +++ b/source/blender/src/drawview.c @@ -828,7 +828,7 @@ void drawview3dspace(ScrArea *sa, void *spacedata) glClearColor(0.0, 0.0, 0.0, 0.0); } else { - glClearColor(0.55, 0.55, 0.55, 0.0); + glClearColor(0.45, 0.45, 0.45, 0.0); } glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);