Make the SendBox work, send plaintext messages

This commit is contained in:
miruka
2019-04-17 23:01:26 -04:00
parent 6ab4acdc84
commit a7649d1a7a
4 changed files with 18 additions and 5 deletions

View File

@@ -30,7 +30,6 @@ Rectangle {
property real yPos: visibleArea.yPosition
onYPosChanged: {
console.log(yPos)
if (yPos <= 0.1) {
Backend.loadPastEvents(chatPage.room.room_id)
}

View File

@@ -53,9 +53,8 @@ Rectangle {
if (textArea.text === "") { return }
Backend.sendMessage(chatPage.user.user_id,
chatPage.room.room_id,
textArea.text)
Backend.clientManager.clients[chatPage.user_id]
.sendMessage(chatPage.room.room_id, textArea.text)
textArea.clear()
}
Keys.onEnterPressed: Keys.onReturnPressed(event) // numpad enter