From ee8819681f90c06901426ecfb61527b5df3b6b3e Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 7 Oct 2018 22:27:57 +0300 Subject: [PATCH] Don't jump to unread from chat bottom (support). --- Telegram/SourceFiles/history/history_widget.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index b68945761..48cb61c68 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -5033,6 +5033,9 @@ int HistoryWidget::countAutomaticScrollTop() { setMsgId(ShowAtUnreadMsgId); result = countInitialScrollTop(); App::wnd()->checkHistoryActivation(); + if (Auth().supportMode()) { + history->unsetFirstUnreadMessage(); + } return result; } }