diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index 4316bf882..2d666936a 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -1617,6 +1617,18 @@ void HistoryWidget::applyCloudDraft(History *history) { } } +bool HistoryWidget::insideJumpToEndInsteadOfToUnread() const { + if (session().supportMode()) { + return true; + } else if (!_historyInited) { + return false; + } + _history->calculateFirstUnreadMessage(); + const auto unread = _history->firstUnreadMessage(); + const auto visibleBottom = _scroll->scrollTop() + _scroll->height(); + return unread && _list->itemTop(unread) <= visibleBottom; +} + void HistoryWidget::showHistory( const PeerId &peerId, MsgId showAtMsgId, @@ -1634,9 +1646,15 @@ void HistoryWidget::showHistory( if (_peer->id == peerId && !reload) { updateForwarding(); - if (showAtMsgId == ShowAtUnreadMsgId) { + if (showAtMsgId == ShowAtUnreadMsgId + && insideJumpToEndInsteadOfToUnread()) { showAtMsgId = ShowAtTheEndMsgId; } + if (!IsServerMsgId(showAtMsgId) + && !IsServerMsgId(-showAtMsgId)) { + // To end or to unread. + destroyUnreadBar(); + } const auto canShowNow = _history->isReadyFor(showAtMsgId); if (!canShowNow) { delayedShowAt(showAtMsgId); @@ -2806,8 +2824,7 @@ void HistoryWidget::historyDownClicked() { } else if (_replyReturn && _replyReturn->history() == _migrated) { showHistory(_peer->id, -_replyReturn->id); } else if (_peer) { - showHistory(_peer->id, ShowAtTheEndMsgId); // #TODO reading - // session().supportMode() ? ShowAtTheEndMsgId : ShowAtUnreadMsgId); + showHistory(_peer->id, ShowAtUnreadMsgId); } } @@ -4990,6 +5007,8 @@ int HistoryWidget::countInitialScrollTop() { createUnreadBarIfBelowVisibleArea(result); return result; } + } else if (_showAtMsgId == ShowAtTheEndMsgId) { + return ScrollMax; } else if (const auto top = unreadBarTop()) { return *top; } else { diff --git a/Telegram/SourceFiles/history/history_widget.h b/Telegram/SourceFiles/history/history_widget.h index 41cb14761..da9a8fb1c 100644 --- a/Telegram/SourceFiles/history/history_widget.h +++ b/Telegram/SourceFiles/history/history_widget.h @@ -559,6 +559,7 @@ private: void destroyUnreadBar(); void destroyUnreadBarOnClose(); void createUnreadBarIfBelowVisibleArea(int withScrollTop); + [[nodiscard]] bool insideJumpToEndInsteadOfToUnread() const; void saveEditMsg(); void saveEditMsgDone(History *history, const MTPUpdates &updates, mtpRequestId req);