From 90ebeaa881453c2870b6847b3b533363a293f5ba Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Fri, 15 Jul 2022 19:33:09 +0200 Subject: [PATCH] fixed fullscreen opacity on fullscreen 1 --- src/layout/DwindleLayout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layout/DwindleLayout.cpp b/src/layout/DwindleLayout.cpp index 2d9eab0f..c356c8cc 100644 --- a/src/layout/DwindleLayout.cpp +++ b/src/layout/DwindleLayout.cpp @@ -548,8 +548,6 @@ void CHyprDwindleLayout::fullscreenRequestForWindow(CWindow* pWindow, eFullscree pWindow->m_bIsFullscreen = on; PWORKSPACE->m_bHasFullscreenWindow = !PWORKSPACE->m_bHasFullscreenWindow; - g_pCompositor->updateWindowAnimatedDecorationValues(pWindow); - g_pEventManager->postEvent(SHyprIPCEvent("fullscreen", std::to_string((int)on))); if (!pWindow->m_bIsFullscreen) { @@ -594,6 +592,8 @@ void CHyprDwindleLayout::fullscreenRequestForWindow(CWindow* pWindow, eFullscree } } + g_pCompositor->updateWindowAnimatedDecorationValues(pWindow); + g_pXWaylandManager->setWindowSize(pWindow, pWindow->m_vRealSize.goalv()); g_pCompositor->moveWindowToTop(pWindow);