From 4d1a01c829a18f194c1a9a0ab4eac8b5a5977d17 Mon Sep 17 00:00:00 2001 From: Forest Date: Fri, 19 Aug 2022 07:41:22 +0000 Subject: [PATCH] Focus message input box when pressing Esc This helps with #1065, although I think making sure the message input box gets focus by default would be worthwhile. --- resources/qml/MessageView.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml index ef11f886..fd533229 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml @@ -198,6 +198,7 @@ Item { chat.model.reply = undefined; else chat.model.edit = undefined; + TimelineManager.focusMessageInput(); } }