desktop: restore invisible floating window alpha/opacity when focused over fullscreen (#12994)
This commit is contained in:
parent
6c3ebed76e
commit
e7985ca4c4
5 changed files with 51 additions and 0 deletions
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include "../../config/ConfigManager.hpp"
|
||||
#include "../../Compositor.hpp"
|
||||
#include "desktop/DesktopTypes.hpp"
|
||||
#include "wlr-layer-shell-unstable-v1.hpp"
|
||||
|
||||
void CDesktopAnimationManager::startAnimation(PHLWINDOW pWindow, eAnimationType type, bool force) {
|
||||
|
|
@ -484,6 +485,13 @@ void CDesktopAnimationManager::setFullscreenFadeAnimation(PHLWORKSPACE ws, eAnim
|
|||
}
|
||||
}
|
||||
|
||||
void CDesktopAnimationManager::setFullscreenFloatingFade(PHLWINDOW pWindow, float fade) {
|
||||
if (pWindow->m_fadingOut || !pWindow->m_isFloating)
|
||||
return;
|
||||
|
||||
*pWindow->m_alpha = fade;
|
||||
}
|
||||
|
||||
void CDesktopAnimationManager::overrideFullscreenFadeAmount(PHLWORKSPACE ws, float fade, PHLWINDOW exclude) {
|
||||
for (auto const& w : g_pCompositor->m_windows) {
|
||||
if (w == exclude)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue