Merge "Fix messaging for sync now feature, when no account is selected"
This commit is contained in:
commit
3c6ac75c48
1 changed files with 2 additions and 2 deletions
|
@ -158,10 +158,10 @@ public final class AccountsSettingsFragment extends SubScreenFragment {
|
||||||
final String currentAccount = getCurrentlySelectedAccount();
|
final String currentAccount = getCurrentlySelectedAccount();
|
||||||
if (currentAccount == null) {
|
if (currentAccount == null) {
|
||||||
syncNowPreference.setEnabled(false);
|
syncNowPreference.setEnabled(false);
|
||||||
syncNowPreference.setSummary(R.string.sync_now_summary);
|
syncNowPreference.setSummary(R.string.sync_now_summary_disabled_signed_out);
|
||||||
} else {
|
} else {
|
||||||
syncNowPreference.setEnabled(true);
|
syncNowPreference.setEnabled(true);
|
||||||
syncNowPreference.setSummary(R.string.sync_now_summary_disabled_signed_out);
|
syncNowPreference.setSummary(R.string.sync_now_summary);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue