Fix invitation.
This commit is contained in:
parent
4463d676d5
commit
70adb8564f
|
@ -937,14 +937,20 @@ Item {
|
||||||
text: "Accept"
|
text: "Accept"
|
||||||
flat: true
|
flat: true
|
||||||
|
|
||||||
onClicked: currentRoom.acceptInvitation()
|
onClicked: {
|
||||||
|
inviteDialog.currentRoom.acceptInvitation()
|
||||||
|
inviteDialog.close()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
text: "Reject"
|
text: "Reject"
|
||||||
flat: true
|
flat: true
|
||||||
|
|
||||||
onClicked: currentRoom.forget()
|
onClicked: {
|
||||||
|
inviteDialog.currentRoom.forget()
|
||||||
|
inviteDialog.close()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
|
|
Loading…
Reference in New Issue