Fix an UI bug in AppRTC Demo where disable hardware AGC/NS summary was not getting updated.

In Android AppRTC Demo, there was a bug where toggling disable hardware
AGC/NS would not be reflected into the summary of those settings. This
change fixes this issue.

Review-Url: https://codereview.webrtc.org/2184223003
Cr-Commit-Position: refs/heads/master@{#13551}
This commit is contained in:
sakal
2016-07-28 05:55:32 -07:00
committed by Commit bot
parent 09f45108c2
commit 178ae905c8

View File

@ -190,6 +190,8 @@ public class SettingsActivity extends Activity
|| key.equals(keyprefAecDump) || key.equals(keyprefAecDump)
|| key.equals(keyprefOpenSLES) || key.equals(keyprefOpenSLES)
|| key.equals(keyprefDisableBuiltInAEC) || key.equals(keyprefDisableBuiltInAEC)
|| key.equals(keyprefDisableBuiltInAGC)
|| key.equals(keyprefDisableBuiltInNS)
|| key.equals(keyPrefDisplayHud)) { || key.equals(keyPrefDisplayHud)) {
updateSummaryB(sharedPreferences, key); updateSummaryB(sharedPreferences, key);
} }