Fixed max participants for mosaic layout preference
This commit is contained in:
parent
bf066680af
commit
5bae5bc9de
1 changed files with 3 additions and 2 deletions
|
@ -478,7 +478,8 @@ class CorePreferences constructor(private val context: Context) {
|
|||
get() = config.getString("app", "debug_popup_magic", "#1234#")!!
|
||||
|
||||
// If there is more participants than this value in a conference, force ActiveSpeaker layout
|
||||
val maxConferenceParticipantsForMosaicLayout: Int = 6
|
||||
val maxConferenceParticipantsForMosaicLayout: Int
|
||||
get() = config.getInt("app", "conference_mosaic_layout_max_participants", 6)
|
||||
|
||||
val conferenceServerUri: String
|
||||
get() = config.getString(
|
||||
|
@ -505,7 +506,7 @@ class CorePreferences constructor(private val context: Context) {
|
|||
get() = config.getString(
|
||||
"misc",
|
||||
"version_check_url_root",
|
||||
"https://download.linphone.org/releases/android/RELEASE"
|
||||
"https://linphone.org/releases/android/RELEASE"
|
||||
)
|
||||
|
||||
val checkUpdateAvailableInterval: Int
|
||||
|
|
Loading…
Reference in a new issue