Skip to content

Commit

Permalink
Closes #797
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewhorridge committed Mar 15, 2019
1 parent 492c874 commit ede984a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class DisplayDeprecatedEntitiesAction extends ComponentHierarchyAction<Ha

@Override
protected Class<HasDisplayDeprecatedEntities> initialiseAction() {
putValue(SELECTED_KEY, true);
putValue(SELECTED_KEY, false);
return HasDisplayDeprecatedEntities.class;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ public void mouseReleased(MouseEvent e) {
}

breadCrumbTrailProviderRegistration = getOWLWorkspace().registerBreadcrumbTrailProvider(this);

// Don't show deprecated entities by default
getHierarchyProvider().setFilter(this::isNotDeprecated);
}

protected boolean isInAssertedMode() {
Expand Down

0 comments on commit ede984a

Please sign in to comment.