fix(gui): use alias for types in tooltips (#1487)
This commit is contained in:
@@ -90,7 +90,7 @@ public abstract class JNode extends DefaultMutableTreeNode implements Comparable
|
||||
}
|
||||
|
||||
public String getTooltip() {
|
||||
return null;
|
||||
return makeLongStringHtml();
|
||||
}
|
||||
|
||||
private static final Comparator<JNode> COMPARATOR = Comparator
|
||||
|
||||
@@ -83,6 +83,6 @@ class MouseHoverHighlighter extends MouseMotionAdapter {
|
||||
}
|
||||
JNodeCache nodeCache = codeArea.getMainWindow().getCacheObject().getNodeCache();
|
||||
JNode jNode = nodeCache.makeFrom(node);
|
||||
codeArea.setToolTipText(jNode.makeLongString());
|
||||
codeArea.setToolTipText(jNode.getTooltip());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user