mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
Fix missing property showAcceptKnockButton
This commit is contained in:
parent
b03bfa53e4
commit
fc7a1bdfba
1 changed files with 2 additions and 2 deletions
|
@ -216,9 +216,9 @@ EventDelegateChooser {
|
||||||
Button {
|
Button {
|
||||||
Layout.alignment: Qt.AlignHCenter
|
Layout.alignment: Qt.AlignHCenter
|
||||||
text: qsTr("Allow them in")
|
text: qsTr("Allow them in")
|
||||||
visible: room.showAcceptKnockButton(eventId)
|
visible: member.room.showAcceptKnockButton(member.eventId)
|
||||||
|
|
||||||
onClicked: room.acceptKnock(member.eventId)
|
onClicked: member.room.acceptKnock(member.eventId)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue