mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Fixed switch to grid layout in conference if there is exactly 6 participants
This commit is contained in:
parent
0dbd403d5b
commit
0239d3a3a6
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ class ConferenceLayoutMenuDialogFragment(
|
|||
view.viewModel = conferenceModel
|
||||
|
||||
view.setGridClickListener {
|
||||
if (conferenceModel.participantDevices.value.orEmpty().size < 6) {
|
||||
if (conferenceModel.participantDevices.value.orEmpty().size < 7) {
|
||||
conferenceModel.changeLayout(ConferenceViewModel.GRID_LAYOUT)
|
||||
dismiss()
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue