renderer: improve zoom in anims (#11453)

Removes `animations:first_launch_animation` as it's useless now
This commit is contained in:
Vaxry 2025-08-16 20:02:15 +01:00 committed by GitHub
parent 78c9e2080c
commit 3d4dc19412
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 13 additions and 36 deletions

View file

@ -619,7 +619,6 @@ CConfigManager::CConfigManager() {
registerConfigVar("master:always_keep_position", Hyprlang::INT{0});
registerConfigVar("animations:enabled", Hyprlang::INT{1});
registerConfigVar("animations:first_launch_animation", Hyprlang::INT{1});
registerConfigVar("animations:workspace_wraparound", Hyprlang::INT{0});
registerConfigVar("input:follow_mouse", Hyprlang::INT{1});
@ -985,6 +984,7 @@ void CConfigManager::setDefaultAnimationVars() {
m_animationTree.createNode("borderangle", "global");
m_animationTree.createNode("workspaces", "global");
m_animationTree.createNode("zoomFactor", "global");
m_animationTree.createNode("monitorAdded", "global");
// layer
m_animationTree.createNode("layersIn", "layers");