diff options
author | tastytea <tastytea@tastytea.de> | 2023-03-12 22:46:23 +0100 |
---|---|---|
committer | tastytea <tastytea@tastytea.de> | 2023-03-12 22:46:23 +0100 |
commit | a4d8df7bd0f21111fe31c5ea0c73e1777be15030 (patch) | |
tree | d5d09fd25255684c707d63e9b88a56c2787ff43f /resources | |
parent | Update cirrus build to work around brew bundle issue (diff) | |
download | nheko-a4d8df7bd0f21111fe31c5ea0c73e1777be15030.tar.xz |
make scroll-down button (toEndButton) focus message input
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/MessageView.qml | 2 |
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 |