We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7988c1d commit f6b4ba0Copy full SHA for f6b4ba0
src/utils/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/Figure.java
@@ -279,7 +279,7 @@ public String[] getLines() {
279
// class NodeQuickSearch in the View module.
280
for (InputNode n : getSource().getSourceNodes()) {
281
String label = resolveString(diagram.getNodeText(), n.getProperties());
282
- n.getProperties().setProperty("label", label);
+ n.getProperties().setProperty("label", label.replaceAll("\\R", " "));
283
}
284
285
return lines;
0 commit comments