From 9a5120cba497023a0328bf177cbd62a63d4775fd Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Wed, 1 Feb 2012 17:39:50 -0800 Subject: [PATCH] Fixed a bug in filterwithcustomintent, fixed text color in list members --- api/src/com/todoroo/astrid/api/FilterWithCustomIntent.java | 2 +- astrid/res/layout/contact_edit_row.xml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/api/src/com/todoroo/astrid/api/FilterWithCustomIntent.java b/api/src/com/todoroo/astrid/api/FilterWithCustomIntent.java index 0ce5290e0..554481e0d 100644 --- a/api/src/com/todoroo/astrid/api/FilterWithCustomIntent.java +++ b/api/src/com/todoroo/astrid/api/FilterWithCustomIntent.java @@ -40,7 +40,7 @@ public class FilterWithCustomIntent extends Filter { public Intent getCustomIntent() { Intent intent = new Intent(); intent.putExtra("filter", this); //$NON-NLS-1$ - intent.setComponent(new ComponentName(AstridApiConstants.PACKAGE, "com.todoroo.astrid.activity.TaskListActivity")); + intent.setComponent(new ComponentName("com.timsu.astrid", "com.todoroo.astrid.activity.TaskListActivity")); //$NON-NLS-1$ //$NON-NLS-2$ if(customExtras != null) intent.putExtras(customExtras); diff --git a/astrid/res/layout/contact_edit_row.xml b/astrid/res/layout/contact_edit_row.xml index e6cddec0a..3f2e193d6 100644 --- a/astrid/res/layout/contact_edit_row.xml +++ b/astrid/res/layout/contact_edit_row.xml @@ -24,6 +24,7 @@ android:layout_height="wrap_content" android:layout_weight="1" android:layout_gravity="center_vertical" + android:textColor="@android:color/black" android:hint="@string/actfm_person_hint" />