mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
Version checker : fix on synchronization between version type and url.
This commit is contained in:
parent
ca995e7589
commit
a056f56f1e
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