summary refs log tree commit diff
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2023-03-12 21:58:11 +0000
committerGitHub <noreply@github.com>2023-03-12 21:58:11 +0000
commitf401562d91cc9e82d685e95d9226e5bb461dec2d (patch)
treed5d09fd25255684c707d63e9b88a56c2787ff43f
parentUpdate cirrus build to work around brew bundle issue (diff)
parentmake scroll-down button (toEndButton) focus message input (diff)
downloadnheko-f401562d91cc9e82d685e95d9226e5bb461dec2d.tar.xz
Merge pull request #1415 from tastytea/toEndButton-focus
make scroll-down button (toEndButton) focus message input
-rw-r--r--resources/qml/MessageView.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml

index f9aaf9dd..83cbb781 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml
@@ -821,7 +821,7 @@ Item { width: 0 height: width radius: width/2 - onClicked: chat.positionViewAtBeginning(); + onClicked: function() { chat.positionViewAtBeginning(); TimelineManager.focusMessageInput(); } flat: true hoverEnabled: true