lightpreview: change background color

This commit is contained in:
Eric Wasylishen 2023-05-20 21:18:24 -06:00
parent 752cd95c02
commit b17fac1eb3
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ void GLView::initializeGL()
void GLView::paintGL()
{
// draw
glClearColor(0, 0, 0, 1);
glClearColor(0.1, 0.1, 0.1, 1);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
m_program->bind();