From 3e38db916aaecba0a7c7698c6df0c68acb89f312 Mon Sep 17 00:00:00 2001 From: Agzam4 <75160721+Agzam4@users.noreply.github.com> Date: Sun, 12 Apr 2026 18:28:18 +0300 Subject: [PATCH] winwrap: overlay render after special workspace (#638) Bug: window rendered on top after closing special workspace Fixed render order by switching to RENDER_POST_WALLPAPER --- hyprwinwrap/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyprwinwrap/main.cpp b/hyprwinwrap/main.cpp index d9f2c1b..5cb2d00 100644 --- a/hyprwinwrap/main.cpp +++ b/hyprwinwrap/main.cpp @@ -115,7 +115,7 @@ void onCloseWindow(PHLWINDOW pWindow) { } void onRenderStage(eRenderStage stage) { - if (stage != RENDER_PRE_WINDOWS) + if (stage != RENDER_POST_WALLPAPER) return; for (auto& bg : bgWindows) {