Changeset 11265 in osm
- Timestamp:
- 2008-10-15T19:00:27+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbLayer.java
r11161 r11265 140 140 StringBuilder sb = new StringBuilder("<html>"); 141 141 //sb.append(desc.replaceAll("\\|", "<br>")); 142 sb.append(desc );142 sb.append(desc.replaceAll("<hr />", "<hr>")); 143 143 sb.append("</html>"); 144 144 desc = sb.toString(); … … 147 147 int tooltipWidth = 0; 148 148 Rectangle2D fontBounds = null; 149 String[] lines = desc.split("<hr />");149 String[] lines = desc.split("<hr>"); 150 150 for (int i = 0; i < lines.length; i++) { 151 151 String line = lines[i];
Note:
See TracChangeset
for help on using the changeset viewer.