diff --git a/astrid/src/com/todoroo/astrid/activity/BeastModePreferences.java b/astrid/src/com/todoroo/astrid/activity/BeastModePreferences.java index fcd68a112..941ad09c1 100644 --- a/astrid/src/com/todoroo/astrid/activity/BeastModePreferences.java +++ b/astrid/src/com/todoroo/astrid/activity/BeastModePreferences.java @@ -82,13 +82,13 @@ public class BeastModePreferences extends ListActivity { return; ArrayList list = constructOrderedControlList(context); - String moreSeparator = context.getResources().getString(R.string.TEA_ctrl_more_pref); + String hideSeparator = context.getResources().getString(R.string.TEA_ctrl_hide_section_pref); String importancePref = context.getResources().getString(R.string.TEA_ctrl_importance_pref); String listsPref = context.getResources().getString(R.string.TEA_ctrl_lists_pref); list.remove(importancePref); list.remove(listsPref); - int moreIndex = list.indexOf(moreSeparator); + int moreIndex = list.indexOf(hideSeparator); if (moreIndex >= 0) { list.add(moreIndex + 1, listsPref); list.add(moreIndex + 1, importancePref);