am 3c6ac75c: Merge "Fix messaging for sync now feature, when no account is selected"

* commit '3c6ac75c48e0f57d389305c9c22a3be960682ed2':
  Fix messaging for sync now feature, when no account is selected
main
Jatin Matani 2014-10-08 23:46:46 +00:00 committed by Android Git Automerger
commit 45110a7bcf
1 changed files with 2 additions and 2 deletions

View File

@ -158,10 +158,10 @@ public final class AccountsSettingsFragment extends SubScreenFragment {
final String currentAccount = getCurrentlySelectedAccount();
if (currentAccount == null) {
syncNowPreference.setEnabled(false);
syncNowPreference.setSummary(R.string.sync_now_summary);
syncNowPreference.setSummary(R.string.sync_now_summary_disabled_signed_out);
} else {
syncNowPreference.setEnabled(true);
syncNowPreference.setSummary(R.string.sync_now_summary_disabled_signed_out);
syncNowPreference.setSummary(R.string.sync_now_summary);
}
}