From ee4f83ffde3b68aabba4cbb69c5eca82afd899e8 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 6 May 2024 20:47:05 +0400 Subject: [PATCH] Disable bottom-info reactions view. --- Telegram/SourceFiles/history/view/history_view_message.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Telegram/SourceFiles/history/view/history_view_message.cpp b/Telegram/SourceFiles/history/view/history_view_message.cpp index 96cbc4648..beaae32f1 100644 --- a/Telegram/SourceFiles/history/view/history_view_message.cpp +++ b/Telegram/SourceFiles/history/view/history_view_message.cpp @@ -3013,6 +3013,8 @@ bool Message::isSignedAuthorElided() const { } bool Message::embedReactionsInBottomInfo() const { + return false; +#if 0 // legacy const auto item = data(); const auto user = item->history()->peer->asUser(); if (!user @@ -3045,6 +3047,7 @@ bool Message::embedReactionsInBottomInfo() const { } } return true; +#endif } bool Message::embedReactionsInBubble() const {