am 8aea2674: am 88c80b77: Load replyall setting

* commit '8aea267466d3b79fae468abf003ca7fc503f4226':
  Load replyall setting
This commit is contained in:
Paul Westbrook 2013-03-13 04:45:17 +00:00 committed by Android Git Automerger
commit 31b4a9cc28

View File

@ -168,10 +168,11 @@ public class GeneralPreferences extends EmailPreferenceFragment implements
mSwipeDelete.setChecked(MailPrefs.ConversationListSwipeActions.DELETE.equals(
mMailPrefs.getConversationListSwipeAction(false)));
final Preference replyAllPreference =
findPreference(MailPrefs.PreferenceKeys.DEFAULT_REPLY_ALL);
final CheckBoxPreference replyAllPreference =
(CheckBoxPreference) findPreference(MailPrefs.PreferenceKeys.DEFAULT_REPLY_ALL);
// This preference is removed on tablets
if (replyAllPreference != null) {
replyAllPreference.setChecked(mMailPrefs.getDefaultReplyAll());
replyAllPreference.setOnPreferenceChangeListener(this);
}