From ac96bbcbe2e9ba2853f533c8e80bf0c04ce1cef1 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Mon, 13 Aug 2012 11:54:44 -0700 Subject: [PATCH] People in simple edit ab test shouldn't see ideas tab either --- .../plugin-src/com/todoroo/astrid/notes/EditNoteActivity.java | 2 +- astrid/res/values/strings-core.xml | 2 +- astrid/src/com/todoroo/astrid/utility/AstridPreferences.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/notes/EditNoteActivity.java b/astrid/plugin-src/com/todoroo/astrid/notes/EditNoteActivity.java index 2f820b7b0..be5de7b0b 100644 --- a/astrid/plugin-src/com/todoroo/astrid/notes/EditNoteActivity.java +++ b/astrid/plugin-src/com/todoroo/astrid/notes/EditNoteActivity.java @@ -331,7 +331,7 @@ public class EditNoteActivity extends LinearLayout implements TimerActionListene LayoutParams.WRAP_CONTENT)); noUpdates.setPadding(10, 10, 10, 10); noUpdates.setGravity(Gravity.CENTER); - noUpdates.setTextSize(20); + noUpdates.setTextSize(16); this.addView(noUpdates); } diff --git a/astrid/res/values/strings-core.xml b/astrid/res/values/strings-core.xml index c8301d1b5..dadc5ec2e 100644 --- a/astrid/res/values/strings-core.xml +++ b/astrid/res/values/strings-core.xml @@ -462,7 +462,7 @@ More - No Activity to Show. + No activity Load more... diff --git a/astrid/src/com/todoroo/astrid/utility/AstridPreferences.java b/astrid/src/com/todoroo/astrid/utility/AstridPreferences.java index 00013dcd8..f0b225fb7 100644 --- a/astrid/src/com/todoroo/astrid/utility/AstridPreferences.java +++ b/astrid/src/com/todoroo/astrid/utility/AstridPreferences.java @@ -64,7 +64,6 @@ public class AstridPreferences { Preferences.setIfUnset(prefs, editor, r, R.string.p_field_missed_calls, true); Preferences.setIfUnset(prefs, editor, r, R.string.p_third_party_addons, false); - Preferences.setIfUnset(prefs, editor, r, R.string.p_ideas_tab_enabled, true); Preferences.setIfUnset(prefs, editor, r, R.string.p_end_at_deadline, true); Preferences.setIfUnset(prefs, editor, r, R.string.p_rmd_persistent, @@ -75,6 +74,7 @@ public class AstridPreferences { Preferences.setString(BeastModePreferences.BEAST_MODE_ORDER_PREF, BeastModePreferences.getSimpleEditOrderForABTest(context)); } + Preferences.setIfUnset(prefs, editor, r, R.string.p_ideas_tab_enabled, !simpleEdit); if ("white-blue".equals(Preferences.getStringValue(R.string.p_theme))) { //$NON-NLS-1$ migrate from when white-blue wasn't the default Preferences.setString(R.string.p_theme, ThemeService.THEME_WHITE);