Fixed invalid long duration of animations.

This commit is contained in:
Daria Volvenkova 2018-01-15 16:45:54 +03:00 committed by Roman Kuznetsov
parent 23d5128a26
commit 326e21855d

View file

@ -477,6 +477,10 @@ bool UserEventStream::SetScreen(ScreenBase const & endScreen, bool isAnim, TAnim
if (moveDuration > kMaxAnimationTimeSec)
anim = GetPrettyMoveAnimation(screen, endScreen);
}
else
{
anim->SetMaxDuration(kMaxAnimationTimeSec);
}
if (anim != nullptr)
{