mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix: audiocall button disabled in groupchats
change the condition for when the audiocall button is enabled affects #2989
This commit is contained in:
parent
28cecadbc4
commit
db4f02a0c4
|
@ -217,7 +217,7 @@ void GroupChatForm::onUserListChanged()
|
|||
}
|
||||
|
||||
// Enable or disable call button
|
||||
if (peersCount != 1 && !callButton->isEnabled())
|
||||
if (peersCount > 1 && group->isAvGroupchat())
|
||||
{
|
||||
callButton->setEnabled(true);
|
||||
callButton->setObjectName("green");
|
||||
|
|
Loading…
Reference in New Issue
Block a user