mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
Fix DTMF default value
This commit is contained in:
parent
829388a3f2
commit
48ff9961ea
1 changed files with 2 additions and 3 deletions
|
|
@ -861,12 +861,11 @@ public class SettingsFragment extends PreferencesListFragment {
|
|||
CheckBoxPreference rfc2833 = (CheckBoxPreference) findPreference(getString(R.string.pref_rfc2833_dtmf_key));
|
||||
CheckBoxPreference sipInfo = (CheckBoxPreference) findPreference(getString(R.string.pref_sipinfo_dtmf_key));
|
||||
|
||||
rfc2833.setChecked(mPrefs.useRfc2833Dtmfs());
|
||||
sipInfo.setChecked(mPrefs.useSipInfoDtmfs());
|
||||
deviceRingtone.setChecked(mPrefs.isDeviceRingtoneEnabled());
|
||||
autoAnswer.setChecked(mPrefs.isAutoAnswerEnabled());
|
||||
|
||||
rfc2833.setChecked(false);
|
||||
sipInfo.setChecked(false);
|
||||
|
||||
setPreferenceDefaultValueAndSummary(R.string.pref_voice_mail_key, mPrefs.getVoiceMailUri());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue