diff options
author | DeepBlueV7.X <nicolas.werner@hotmail.de> | 2022-08-20 21:50:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-20 21:50:55 +0000 |
commit | 63339ad6320a34b3d6b64d813edcaa5c531652c2 (patch) | |
tree | f5a8742c109c6de0c5cd4b1f7d93cdfc14be3b90 | |
parent | Merge pull request #1160 from foresto/reaction-colors (diff) | |
parent | Focus message input box when pressing Esc (diff) | |
download | nheko-63339ad6320a34b3d6b64d813edcaa5c531652c2.tar.xz |
Merge pull request #1156 from foresto/patch-1
Focus message input box when pressing Esc
-rw-r--r-- | resources/qml/MessageView.qml | 1 |
1 files changed, 1 insertions, 0 deletions
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(); } } |