From 1f06c9982ee569eb6aa19e75cb75678fd60189ba Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Fri, 3 Feb 2012 18:03:15 -0800 Subject: [PATCH] Fixed bug where the displayed list wouldn't fully switch when creating a new list --- astrid/src/com/todoroo/astrid/activity/TaskListActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/src/com/todoroo/astrid/activity/TaskListActivity.java b/astrid/src/com/todoroo/astrid/activity/TaskListActivity.java index bb85f3cba..eeb0634bd 100644 --- a/astrid/src/com/todoroo/astrid/activity/TaskListActivity.java +++ b/astrid/src/com/todoroo/astrid/activity/TaskListActivity.java @@ -326,7 +326,7 @@ public class TaskListActivity extends AstridActivity implements MainMenuListener if ((requestCode == FilterListFragment.REQUEST_NEW_LIST || requestCode == FilterListFragment.REQUEST_NEW_FILTER) && resultCode == Activity.RESULT_OK) { Filter newList = data.getParcelableExtra(TagSettingsActivity.TOKEN_NEW_FILTER); if (newList != null) { - getIntent().putExtra(TaskListFragment.TOKEN_FILTER, newList); + onFilterItemClicked(newList); // Switch to the new list FilterListFragment fla = getFilterListFragment(); if (fla != null) fla.clear();