diff --git a/Telegram/SourceFiles/history/history_inner_widget.cpp b/Telegram/SourceFiles/history/history_inner_widget.cpp index 372fbb56a..bb81a303e 100644 --- a/Telegram/SourceFiles/history/history_inner_widget.cpp +++ b/Telegram/SourceFiles/history/history_inner_widget.cpp @@ -1137,6 +1137,15 @@ void HistoryInner::mouseDoubleClickEvent(QMouseEvent *e) { _trippleClickTimer.start(QApplication::doubleClickInterval()); } } + if (!ClickHandler::getActive() + && !ClickHandler::getPressed() + && _mouseCursorState == HistoryDefaultCursorState) { + if (const auto item = _mouseActionItem) { + mouseActionCancel(); + App::contextItem(item); + _widget->onReplyToMessage(); + } + } } void HistoryInner::contextMenuEvent(QContextMenuEvent *e) {