Skip to content

Commit

Permalink
Remove filtering on query in maintable
Browse files Browse the repository at this point in the history
  • Loading branch information
k3KAW8Pnf7mkmdSMPHz27 committed Nov 3, 2023
1 parent be85f96 commit c6acfe1
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,8 @@ public MainTableDataModel(BibDatabaseContext context, PreferencesService prefere
entriesFiltered = new FilteredList<>(entriesViewModel);
entriesFiltered.predicateProperty().bind(
EasyBind.combine(stateManager.activeGroupProperty(),
stateManager.activeSearchQueryProperty(),
groupsPreferences.groupViewModeProperty(),
(groups, query, groupViewMode) -> entry -> isMatched(groups, query, entry))
(groups, groupViewMode) -> entry -> isMatched(groups, Optional.empty(), entry))
);

IntegerProperty resultSize = new SimpleIntegerProperty();
Expand Down

0 comments on commit c6acfe1

Please sign in to comment.