From bf9d31ce49e2fd13950daec83eaff83d045fbbbf Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 19 Oct 2022 15:17:26 +0100 Subject: [PATCH] fix maximized windows not hiding tiled --- src/Compositor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compositor.cpp b/src/Compositor.cpp index 400df7af..3c68608d 100644 --- a/src/Compositor.cpp +++ b/src/Compositor.cpp @@ -1652,7 +1652,7 @@ void CCompositor::setWindowFullscreen(CWindow* pWindow, bool on, eFullscreenMode if (w->m_iWorkspaceID == pWindow->m_iWorkspaceID) { w->m_bCreatedOverFullscreen = false; if (w.get() != pWindow && !w->m_bFadingOut && !w->m_bPinned) - w->m_fAlpha = pWindow->m_bIsFullscreen && mode == FULLSCREEN_FULL ? 0.f : 255.f; + w->m_fAlpha = pWindow->m_bIsFullscreen ? 0.f : 255.f; } }