fix(StatusChatInput) unbreak upload image shortcut

fixes shortcut Ctrl+U being broken when trying to upload an image
This commit is contained in:
Lukáš Tinkl 2022-11-15 18:20:08 +01:00 committed by Lukáš Tinkl
parent 4cdc2f8a91
commit c7efcdd09f
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ Rectangle {
// U
if (isUploadFilePressed(event)) {
imageBtn.clicked()
imageBtn.clicked(null)
event.accepted = true
}