Don't clear chatbox text when starting a reply

This commit is contained in:
Tobias Fella
2022-11-27 17:25:56 +01:00
parent e813fc336d
commit 9bf5c1adf2
2 changed files with 9 additions and 1 deletions

View File

@@ -239,7 +239,9 @@ QQC2.ToolBar {
Connections {
target: currentRoom
function onChatBoxEditIdChanged() {
chatBar.inputFieldText = currentRoom.chatBoxEditMessage
if (currentRoom.chatBoxEditMessage.length > 0) {
chatBar.inputFieldText = currentRoom.chatBoxEditMessage
}
}
}