Fix wrong condition for echo canceller setting visibility
This commit is contained in:
parent
3a0cb99605
commit
510855f208
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ public class SettingsFragment extends PreferencesListFragment implements EcCalib
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (LinphoneManager.getLc().needsEchoCalibration()) {
|
if (!LinphoneManager.getLc().needsEchoCalibration()) {
|
||||||
uncheckAndHidePreference(R.string.pref_echo_cancellation_key);
|
uncheckAndHidePreference(R.string.pref_echo_cancellation_key);
|
||||||
hidePreference(R.string.pref_echo_canceller_calibration_key);
|
hidePreference(R.string.pref_echo_canceller_calibration_key);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue