expo: fix bgcol

fixes #114
This commit is contained in:
Vaxry 2024-04-03 23:27:43 +01:00
parent eb02620d6c
commit e667797142
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ void COverview::render() {
Vector2D tileSize = (SIZE / SIDE_LENGTH);
Vector2D tileRenderSize = (SIZE - Vector2D{GAPSIZE, GAPSIZE} * (SIDE_LENGTH - 1)) / SIDE_LENGTH;
g_pHyprOpenGL->clear(CColor{0.1, 0.1, 0.1, 1.0});
g_pHyprOpenGL->clear(BG_COLOR.stripA());
for (size_t y = 0; y < SIDE_LENGTH; ++y) {
for (size_t x = 0; x < SIDE_LENGTH; ++x) {