mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-09-08 19:13:28 +02:00
chatview: hide AddMemberPanel if max participants is reached
Change-Id: Ibe07af6400b4f761951e7b6251646b311f56f1b6
This commit is contained in:
parent
8fb34e34aa
commit
b46acb12d3
1 changed files with 2 additions and 2 deletions
|
@ -81,8 +81,8 @@ Rectangle {
|
||||||
Connections {
|
Connections {
|
||||||
target: CurrentConversation
|
target: CurrentConversation
|
||||||
|
|
||||||
function onUrisChanged(uris) {
|
onUrisChanged: {
|
||||||
if (uris && uris.length >= 8 && addMemberPanel.visible) {
|
if (CurrentConversation.uris.length >= 8 && addMemberPanel.visible) {
|
||||||
swarmDetailsPanel.visible = false
|
swarmDetailsPanel.visible = false
|
||||||
addMemberPanel.visible = !addMemberPanel.visible
|
addMemberPanel.visible = !addMemberPanel.visible
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue