mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-26 15:25:59 +01:00
fix fadeout
This commit is contained in:
parent
d284aaa2ca
commit
17bd1779ea
1 changed files with 1 additions and 1 deletions
|
@ -625,7 +625,7 @@ void CCompositor::moveWindowToTop(CWindow* pWindow) {
|
||||||
void CCompositor::cleanupWindows() {
|
void CCompositor::cleanupWindows() {
|
||||||
for (auto& w : m_lWindowsFadingOut) {
|
for (auto& w : m_lWindowsFadingOut) {
|
||||||
|
|
||||||
bool valid = windowValidMapped(w);
|
bool valid = windowExists(w);
|
||||||
|
|
||||||
if (!valid || !w->m_bFadingOut || w->m_fAlpha.fl() == 0.f) {
|
if (!valid || !w->m_bFadingOut || w->m_fAlpha.fl() == 0.f) {
|
||||||
if (valid && !w->m_bReadyToDelete)
|
if (valid && !w->m_bReadyToDelete)
|
||||||
|
|
Loading…
Reference in a new issue