From bf7c6acba95ff5ff9b638e520dd8671a00eafa85 Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Wed, 22 Apr 2026 19:51:01 +0300 Subject: [PATCH] Fixed display of popup selector for top peers in replies history. --- Telegram/SourceFiles/history/view/history_view_message.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/history/view/history_view_message.cpp b/Telegram/SourceFiles/history/view/history_view_message.cpp index c39c944bbf..7027e88378 100644 --- a/Telegram/SourceFiles/history/view/history_view_message.cpp +++ b/Telegram/SourceFiles/history/view/history_view_message.cpp @@ -4791,7 +4791,11 @@ ClickHandlerPtr Message::prepareRightActionLink() const { } } }); - result->setProperty(kFastShareProperty, QVariant::fromValue(true)); + const auto navigates = data()->externalReply() + || (savedFromPeer && savedFromMsgId); + if (!navigates) { + result->setProperty(kFastShareProperty, QVariant::fromValue(true)); + } return result; }