From 9541979be211ee0db1a24c1d66c502fcfe033d6a Mon Sep 17 00:00:00 2001 From: MicroBlock <66859419+std-microblock@users.noreply.github.com> Date: Mon, 3 Feb 2025 15:35:46 +0800 Subject: [PATCH] fix: add DWM_BB_ENABLE | DWM_BB_BLURREGION; --- src/win32_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32_window.c b/src/win32_window.c index 09b90f40..d7669081 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -389,7 +389,7 @@ static void updateFramebufferTransparency(const _GLFWwindow* window) { HRGN region = CreateRectRgn(0, 0, -1, -1); DWM_BLURBEHIND bb = {0}; - bb.dwFlags = DWM_BB_ENABLE; + bb.dwFlags = DWM_BB_ENABLE | DWM_BB_BLURREGION;; bb.hRgnBlur = region; bb.fEnable = TRUE;