mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-09-08 11:03:30 +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 {
|
||||
target: CurrentConversation
|
||||
|
||||
function onUrisChanged(uris) {
|
||||
if (uris && uris.length >= 8 && addMemberPanel.visible) {
|
||||
onUrisChanged: {
|
||||
if (CurrentConversation.uris.length >= 8 && addMemberPanel.visible) {
|
||||
swarmDetailsPanel.visible = false
|
||||
addMemberPanel.visible = !addMemberPanel.visible
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue