mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 19:26:00 +01:00
parent
4156b55cf9
commit
64c8ba2fb1
1 changed files with 2 additions and 3 deletions
|
@ -279,7 +279,7 @@ class CAnimatedVariable : public CBaseAnimatedVariable {
|
|||
}
|
||||
|
||||
void warp(bool endCallback = true) override {
|
||||
if (m_Value == m_Goal)
|
||||
if (!m_bIsBeingAnimated)
|
||||
return;
|
||||
|
||||
m_Value = m_Goal;
|
||||
|
@ -289,8 +289,7 @@ class CAnimatedVariable : public CBaseAnimatedVariable {
|
|||
if (m_fUpdateCallback)
|
||||
m_fUpdateCallback(this);
|
||||
|
||||
if (endCallback)
|
||||
onAnimationEnd();
|
||||
onAnimationEnd();
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue