mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 19:38:09 +00:00
Version checker : fix on synchronization between version type and url.
This commit is contained in:
parent
d8c461d93e
commit
8a8a042e3e
1 changed files with 2 additions and 2 deletions
|
|
@ -268,8 +268,8 @@ TabContainer {
|
|||
currentIndex: SettingsModel.versionCheckType == SettingsModel.VersionCheckType_Release ? 0
|
||||
: SettingsModel.versionCheckType == SettingsModel.VersionCheckType_Nightly ? 1
|
||||
: 2
|
||||
onActivated: SettingsModel.versionCheckType = ( currentIndex == 0 ? SettingsModel.VersionCheckType_Release
|
||||
: currentIndex == 1 ? SettingsModel.VersionCheckType_Nightly
|
||||
onActivated: SettingsModel.versionCheckType = ( index == 0 ? SettingsModel.VersionCheckType_Release
|
||||
: index == 1 ? SettingsModel.VersionCheckType_Nightly
|
||||
: SettingsModel.VersionCheckType_Custom)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue