From 1222f914eda9e575141cae9673f26005a52fb9eb Mon Sep 17 00:00:00 2001 From: John Preston Date: Sat, 16 Jul 2016 09:54:02 +0300 Subject: [PATCH] Fixed time label positioning after the text has changed. --- Telegram/SourceFiles/media/view/media_clip_controller.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Telegram/SourceFiles/media/view/media_clip_controller.cpp b/Telegram/SourceFiles/media/view/media_clip_controller.cpp index eb9f1ae3f..133e93330 100644 --- a/Telegram/SourceFiles/media/view/media_clip_controller.cpp +++ b/Telegram/SourceFiles/media/view/media_clip_controller.cpp @@ -157,6 +157,7 @@ void Controller::refreshTimeTexts() { _playedAlready->setText(timeAlready, &alreadyChanged); _toPlayLeft->setText(timeLeft, &leftChanged); if (alreadyChanged || leftChanged) { + resizeEvent(nullptr); _fadeAnimation->refreshCache(); } }