mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 20:25:58 +01:00
prevent double-registering of avars
This commit is contained in:
parent
cfbab453e8
commit
ff76fbe763
2 changed files with 5 additions and 1 deletions
|
@ -54,10 +54,13 @@ CAnimatedVariable::~CAnimatedVariable() {
|
||||||
|
|
||||||
void CAnimatedVariable::unregister() {
|
void CAnimatedVariable::unregister() {
|
||||||
g_pAnimationManager->m_lAnimatedVariables.remove(this);
|
g_pAnimationManager->m_lAnimatedVariables.remove(this);
|
||||||
|
m_bIsRegistered = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CAnimatedVariable::registerVar() {
|
void CAnimatedVariable::registerVar() {
|
||||||
|
if (!m_bIsRegistered)
|
||||||
g_pAnimationManager->m_lAnimatedVariables.push_back(this);
|
g_pAnimationManager->m_lAnimatedVariables.push_back(this);
|
||||||
|
m_bIsRegistered = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
int CAnimatedVariable::getDurationLeftMs() {
|
int CAnimatedVariable::getDurationLeftMs() {
|
||||||
|
|
|
@ -200,6 +200,7 @@ private:
|
||||||
SAnimationPropertyConfig* m_pConfig = nullptr;
|
SAnimationPropertyConfig* m_pConfig = nullptr;
|
||||||
|
|
||||||
bool m_bDummy = true;
|
bool m_bDummy = true;
|
||||||
|
bool m_bIsRegistered = false;
|
||||||
|
|
||||||
std::chrono::system_clock::time_point animationBegin;
|
std::chrono::system_clock::time_point animationBegin;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue