From d2b40ffe7bfcb001bbf5888bb56ff646de53e7db Mon Sep 17 00:00:00 2001 From: Vaxry Date: Sun, 28 Jun 2026 11:38:16 +0200 Subject: [PATCH] animation/variable: set m_Begun for setValueAndWarp --- include/hyprutils/animation/AnimatedVariable.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/hyprutils/animation/AnimatedVariable.hpp b/include/hyprutils/animation/AnimatedVariable.hpp index 79357a3..c72044d 100644 --- a/include/hyprutils/animation/AnimatedVariable.hpp +++ b/include/hyprutils/animation/AnimatedVariable.hpp @@ -264,6 +264,7 @@ namespace Hyprutils { /* Sets the actual value and goal*/ void setValueAndWarp(const VarType& v) { m_Goal = v; + m_Begun = v; m_bIsBeingAnimated = true; warp();