mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-19 05:53:48 -07:00
Dwindle window group fixes
fixed a crash and animations in the bg
This commit is contained in:
@@ -48,7 +48,8 @@ void CAnimationManager::tick() {
|
||||
}
|
||||
|
||||
// process fadein/out for unmapped windows, but nothing else.
|
||||
if (!g_pCompositor->windowValidMapped(&w))
|
||||
// we can't use windowValidMapped because we want to animate hidden windows too.
|
||||
if (!g_pCompositor->windowExists(&w) || !w.m_bIsMapped || !g_pXWaylandManager->getWindowSurface(&w))
|
||||
continue;
|
||||
|
||||
// process the borders
|
||||
|
Reference in New Issue
Block a user