Enhancement - filter on annotation

- Description filters now automatically apply to annotations.
This commit is contained in:
Paul Beckingham
2009-06-21 11:31:03 -04:00
parent 245339e7fc
commit 343c43a010
3 changed files with 57 additions and 15 deletions

View File

@@ -573,6 +573,11 @@ void Context::autoFilter (Task& t, Filter& f)
{
f.push_back (Att ("description", "has", *word));
debug ("auto filter: " + att->first + ".has:" + *word);
/*
f.push_back (Att ("annotation_*", "has", *word));
debug ("auto filter: annotation_*.has:" + *word);
*/
}
}