Skip to content

Commit

Permalink
FileBrowserComponent: Respect FileFilters in TreeView mode
Browse files Browse the repository at this point in the history
This fixes a regression introduced in
a400d3e.
  • Loading branch information
szarvas committed May 31, 2023
1 parent f5cd954 commit f7e04d1
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -195,8 +195,9 @@ class DirectoryScanner : private ChangeListener
return it->second;

auto insertion = contentsLists.emplace (std::piecewise_construct,
std::forward_as_tuple (f),
std::forward_as_tuple (nullptr, root.getTimeSliceThread()));
std::forward_as_tuple (f),
std::forward_as_tuple (root.getFilter(),
root.getTimeSliceThread()));
return insertion.first->second;
}();

Expand Down

0 comments on commit f7e04d1

Please sign in to comment.