mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 22:05:59 +01:00
better ls noanim handling
This commit is contained in:
parent
8ae1fd0173
commit
fc89e70a1f
2 changed files with 1 additions and 6 deletions
|
@ -165,9 +165,6 @@ void Events::listener_mapLayerSurface(void* owner, void* data) {
|
|||
layersurface->readyToDelete = false;
|
||||
layersurface->fadingOut = false;
|
||||
|
||||
if (layersurface->noAnimations)
|
||||
layersurface->alpha.setValueAndWarp(1.f);
|
||||
|
||||
g_pEventManager->postEvent(SHyprIPCEvent{"openlayer", std::string(layersurface->layerSurface->_namespace ? layersurface->layerSurface->_namespace : "")});
|
||||
}
|
||||
|
||||
|
@ -198,9 +195,6 @@ void Events::listener_unmapLayerSurface(void* owner, void* data) {
|
|||
g_pHyprOpenGL->makeLayerSnapshot(layersurface);
|
||||
layersurface->alpha = 0.f;
|
||||
|
||||
if (layersurface->noAnimations)
|
||||
layersurface->alpha.setValueAndWarp(0.f);
|
||||
|
||||
layersurface->mapped = false;
|
||||
|
||||
layersurface->fadingOut = true;
|
||||
|
|
|
@ -67,6 +67,7 @@ void CAnimationManager::tick() {
|
|||
} else if (PLAYER) {
|
||||
WLRBOXPREV = PLAYER->geometry;
|
||||
PMONITOR = g_pCompositor->getMonitorFromVector(Vector2D(PLAYER->geometry.x, PLAYER->geometry.y) + Vector2D(PLAYER->geometry.width, PLAYER->geometry.height) / 2.f);
|
||||
animationsDisabled = animationsDisabled || PLAYER->noAnimations;
|
||||
}
|
||||
|
||||
// beziers are with a switch unforto
|
||||
|
|
Loading…
Reference in a new issue