diff --git a/imports/NeoChat/Component/ChatBox/ChatBar.qml b/imports/NeoChat/Component/ChatBox/ChatBar.qml index be53a5ab3..dcea6dfbb 100644 --- a/imports/NeoChat/Component/ChatBox/ChatBar.qml +++ b/imports/NeoChat/Component/ChatBox/ChatBar.qml @@ -405,9 +405,7 @@ ToolBar { } currentRoom.markAllMessagesAsRead(); inputField.clear(); - inputField.text = Qt.binding(function() { - return currentRoom ? currentRoom.cachedInput : ""; - }); + inputField.text = currentRoom ? currentRoom.cachedInput : ""; messageSent() }