From e667797142e6168dfee423b1f96ab88ea4bade09 Mon Sep 17 00:00:00 2001 From: Vaxry Date: Wed, 3 Apr 2024 23:27:43 +0100 Subject: [PATCH] expo: fix bgcol fixes #114 --- hyprexpo/overview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyprexpo/overview.cpp b/hyprexpo/overview.cpp index 1d7d9a3..475192f 100644 --- a/hyprexpo/overview.cpp +++ b/hyprexpo/overview.cpp @@ -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) {