From 9bfa6d7cf45e255f154fb08fd3f1c73021b4f6f4 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 9 Apr 2019 17:21:29 +0400 Subject: [PATCH] Make animation tick less, almost like before. Unfortunately otherwise animations look not smooth. Fixes #5897. --- Telegram/SourceFiles/ui/effects/animations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/ui/effects/animations.cpp b/Telegram/SourceFiles/ui/effects/animations.cpp index 8fe616a8f0..de450743a3 100644 --- a/Telegram/SourceFiles/ui/effects/animations.cpp +++ b/Telegram/SourceFiles/ui/effects/animations.cpp @@ -14,7 +14,7 @@ namespace Ui { namespace Animations { namespace { -constexpr auto kAnimationTick = crl::time(1000) / 60; +constexpr auto kAnimationTick = crl::time(1000) / 120; constexpr auto kIgnoreUpdatesTimeout = crl::time(4); } // namespace