From 0f23787253f01df68b5ec1316df61f11cab2daa8 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Fri, 11 May 2012 14:19:18 -0700 Subject: [PATCH] Shouldn't be able to add tasks to my shared filter from empty view --- .../com/todoroo/astrid/people/PersonViewFragment.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/astrid/plugin-src/com/todoroo/astrid/people/PersonViewFragment.java b/astrid/plugin-src/com/todoroo/astrid/people/PersonViewFragment.java index dc6ad6800..ad42c055c 100644 --- a/astrid/plugin-src/com/todoroo/astrid/people/PersonViewFragment.java +++ b/astrid/plugin-src/com/todoroo/astrid/people/PersonViewFragment.java @@ -57,6 +57,9 @@ public class PersonViewFragment extends TaskListFragment { if (extras.containsKey(EXTRA_HIDE_QUICK_ADD)) quickAddBar.setVisibility(View.GONE); + // set listener for astrid icon + ((TextView) getView().findViewById(android.R.id.empty)).setOnClickListener(null); + } @Override