am f4e4319f: am 083310d3: Update NFC settings description, and fix polarity.

Merge commit 'f4e4319f4162c5dca14a9acc00bb5a2df0e452b3'

* commit 'f4e4319f4162c5dca14a9acc00bb5a2df0e452b3':
  Update NFC settings description, and fix polarity.
This commit is contained in:
Nick Pelly
2010-10-14 22:14:34 -07:00
committed by Android Git Automerger
2 changed files with 3 additions and 3 deletions

View File

@@ -92,9 +92,9 @@ public class NfcEnabler implements Preference.OnPreferenceChangeListener {
private void updateUi() {
mCheckbox.setChecked(mNfcState);
if (mNfcState) {
mCheckbox.setSummary(R.string.nfc_quick_toggle_summary);
mCheckbox.setSummary(null);
} else {
mCheckbox.setSummary("");
mCheckbox.setSummary(R.string.nfc_quick_toggle_summary);
}
}
}