Skip to content

Commit

Permalink
'#2163 Force call to setDockableColores after filterer checkbox click.
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdalla committed Jun 5, 2024
1 parent 5a6309c commit b77a2f4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions iped-app/src/main/java/iped/app/ui/FiltersPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,15 @@ public void actionPerformed(ActionEvent e) {
lastFilters.put(filterer, filterer.getDefinedFilters());
filterer.clearFilter();
App.get().getAppListener().updateFileListing();
App.get().filtersPanel.updateUI();
App.get().setDockablesColors();
} else {
List<IFilter> clastFilters = lastFilters.get(filterer);
if (clastFilters != null) {
filterer.restoreDefinedFilters(clastFilters);
App.get().getAppListener().updateFileListing();
App.get().filtersPanel.updateUI();
App.get().setDockablesColors();
} else {
CheckBoxTreeCellRenderer.TreeCellCheckBoxActionEvent te = (CheckBoxTreeCellRenderer.TreeCellCheckBoxActionEvent) e;
if (te.getCheckBox().isSelected()) {
Expand Down

0 comments on commit b77a2f4

Please sign in to comment.