mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
data: getUntracked now obeys filters
This commit is contained in:
parent
59dd340c3f
commit
947e78e035
1 changed files with 1 additions and 1 deletions
|
@ -615,7 +615,7 @@ std::vector <Range> getUntracked (
|
|||
Interval& filter)
|
||||
{
|
||||
std::vector <Range> inclusion_ranges;
|
||||
for (auto& i : getAllInclusions (database))
|
||||
for (auto& i : subset (filter, getAllInclusions (database)))
|
||||
inclusion_ranges.push_back (i.range);
|
||||
|
||||
auto available = subtractRanges ({filter.range}, getAllExclusions (rules, filter.range));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue