Clear with alpha=1 to fix #1735

pull/1756/head
Jon Beniston 2023-07-31 21:43:15 +01:00
rodzic e7b0921c50
commit 37285a9bce
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -975,7 +975,7 @@ void GLSpectrumView::paintGL()
}
QOpenGLFunctions *glFunctions = QOpenGLContext::currentContext()->functions();
glFunctions->glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glFunctions->glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
glFunctions->glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
QMatrix4x4 spectrogramGridMatrix;