We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2fe01d commit 7f1267cCopy full SHA for 7f1267c
sources/net.sf.j2s.java.core/src/javax/swing/SwingUtilities.java
@@ -1013,7 +1013,7 @@ private static String layoutCompoundLabelImpl(
1013
textR.width = 1;
1014
textR.height = fm.getHeight();
1015
} else {
1016
- String t = text.replace(' ', '\u00A0'); // no-break space
+ String t = text.replaceAll(" ","\u00A0"); // no-break space
1017
if (t != text && /** @j2sNative ui.textNode.innerHTML != t || */false)
1018
DOMNode.setAttr(ui.textNode, "innerHTML", t);
1019
Dimension d = ui.getHTMLSize(ui.textNode);
0 commit comments