Skip to content

Commit

Permalink
Explicitly clear the tooltip text of dependency and folder project nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Jul 30, 2024
1 parent 944e592 commit 5ebc181
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,7 @@ public boolean update() {
public void customize(@NotNull SimpleColoredComponent component) {
component.setIcon(getIcon());
component.append(node_.name());
component.setToolTipText(null);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,6 @@ public CellAppearanceEx getHighlightedText() {
public void customize(@NotNull SimpleColoredComponent component) {
getHighlightedText().customize(component);
component.setIcon(getIcon());
component.setToolTipText(null);
}
}

0 comments on commit 5ebc181

Please sign in to comment.