You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((CSSParser.isWhiteSpace(text.charAt(0))) && (curLine.getComponentCount() != 0)) { //leading space is trimmed if it is in the first component of the line
2082
-
wordStr.append(" "); //leading space
2083
-
}
2084
-
2085
-
while (w < words.size()) {
2086
-
StringnextWord = (String) words.elementAt(w);
2087
-
Stringspace = "";
2088
-
if ((wordStr.length() > 0) && (!wordStr.toString().equals(" "))) {
2089
-
space = " ";
2090
-
}
2091
-
if (font.stringWidth(wordStr.toString() + space + nextWord) > spaceW - 2) {
0 commit comments