From c76e4b6b3c1e715b70f5cfb7f69ede86a1d1bf52 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 11 Mar 2018 23:58:14 +0300 Subject: [PATCH] Fix: cancel empty reply by Escape. --- Telegram/SourceFiles/history/history_widget.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index f545234cc..ffd4271ea 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -6127,7 +6127,9 @@ void HistoryWidget::onCancel() { } } else if (!_fieldAutocomplete->isHidden()) { _fieldAutocomplete->hideAnimated(); - } else { + } else if (_replyToId && _field->getTextWithTags().text.isEmpty()) { + cancelReply(); + } else { controller()->showBackFromStack(); emit cancelled(); } @@ -6229,8 +6231,6 @@ void HistoryWidget::confirmDeleteSelected() { void HistoryWidget::onListEscapePressed() { if (_nonEmptySelection && _list) { clearSelected(); - } else if (_replyToId && _field->getTextWithTags().text.isEmpty()) { - cancelReply(); } else { onCancel(); }