From 453954f901b64001a06b46a029cfadaa35223acd Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 10 Sep 2021 14:33:18 +0300 Subject: [PATCH] Fix forward options for text messages. --- Telegram/SourceFiles/history/history_widget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index 6835a7ba6..0b748fa60 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -5374,6 +5374,8 @@ void HistoryWidget::mousePressEvent(QMouseEvent *e) { if (!media->forceForwardedInfo()) { return false; } + } else { + return false; } } return true;