Reply by double clicking a message.

Backported from telegramdesktop/tdesktop@128663d9

Closes #117
This commit is contained in:
John Preston 2018-02-28 15:07:15 +03:00 committed by Stanislav Ershov
parent 0d5f6f45aa
commit 7ed116aa9d
1 changed files with 9 additions and 0 deletions

View File

@ -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) {