events: set new window alpha to 0 if it's tiled behind fullscreen

fixes #3474
This commit is contained in:
vaxerski 2023-10-02 16:22:39 +01:00
parent 5ffb1032e1
commit 50fecf084d
1 changed files with 3 additions and 0 deletions

View File

@ -633,6 +633,9 @@ void Events::listener_mapWindow(void* owner, void* data) {
// recalc the values for this window
g_pCompositor->updateWindowAnimatedDecorationValues(PWINDOW);
// avoid this window being visible
if (PWORKSPACE->m_bHasFullscreenWindow && !PWINDOW->m_bIsFullscreen && !PWINDOW->m_bIsFloating)
PWINDOW->m_fAlpha.setValueAndWarp(0.f);
g_pProtocolManager->m_pFractionalScaleProtocolManager->setPreferredScaleForSurface(PWINDOW->m_pWLSurface.wlr(), PMONITOR->scale);
}