From 92816d5cad2f9c6129a27a7f294742abb5ad85d8 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Fri, 14 Dec 2012 13:20:28 -0800 Subject: [PATCH] Updated beast mode defaults for astrid lite --- .../src/com/todoroo/astrid/activity/BeastModePreferences.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);