Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(group): don't display netcam view for group voice calls
Browse files Browse the repository at this point in the history
This is a minimal fix to reduce risk for the release. A more complete
re-architecture will be made.

The netcam covers much of the chat in groups, and has nothing to show since
group video calls aren't possible. Who is speaking in call is already shown by
the bold names at the top of the group, taking much less space.

Fix #5918
  • Loading branch information
anthonybilinski committed Jan 27, 2020
1 parent 92e51b0 commit 5b31eff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/widget/form/groupchatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,6 @@ void GroupChatForm::onCallClicked()
audioInputFlag = true;
audioOutputFlag = true;
inCall = true;
showNetcam();
} else {
leaveGroupCall();
}
Expand Down Expand Up @@ -477,5 +476,4 @@ void GroupChatForm::leaveGroupCall()
audioInputFlag = false;
audioOutputFlag = false;
inCall = false;
hideNetcam();
}

0 comments on commit 5b31eff

Please sign in to comment.