am 88c80b77: Load replyall setting

* commit '88c80b775bc8232955dcd0cd07e18aa6f9cbcd5c':
  Load replyall setting
This commit is contained in:
Paul Westbrook 2013-03-13 04:44:17 +00:00 committed by Android Git Automerger
commit 8aea267466

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);
}