Added ability to cancel reply with Ctrl + Arrow Down.

- Fixed #4636.
This commit is contained in:
23rd 2019-07-03 00:29:34 +03:00 committed by John Preston
parent 1963fca7d3
commit 4ac3aef600
1 changed files with 3 additions and 0 deletions

View File

@ -5239,6 +5239,9 @@ void HistoryWidget::replyToNextMessage() {
const auto next = nextView->data();
Ui::showPeerHistoryAtItem(next);
replyToMessage(next);
} else {
clearHighlightMessages();
cancelReply(false);
}
}
}