From 33936195a1c3bb794b1a5914d24d05257c2f84ae Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 18 Aug 2021 11:33:37 +0300 Subject: [PATCH] Animate the chat background in Saved Messages. --- Telegram/SourceFiles/history/history_widget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index 7cfe753c5..9fa941299 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -4929,7 +4929,7 @@ void HistoryWidget::startItemRevealAnimations() { 1., HistoryView::ListWidget::kItemRevealDuration, anim::easeOutCirc); - if (item->out()) { + if (item->out() || _history->peer->isSelf()) { controller()->rotateComplexGradientBackground(); } }