Fix timer crash

This commit is contained in:
Magnus Norddahl 2024-01-12 08:26:23 +01:00
commit ac90f1099a

View file

@ -13,6 +13,8 @@ Timer::Timer(Widget* owner) : OwnerObj(owner)
Timer::~Timer()
{
Stop();
if (PrevTimerObj)
PrevTimerObj->NextTimerObj = NextTimerObj;
if (NextTimerObj)