forked from I2P_Developers/i2p.i2p
Console: Prevent two-word translations from splitting across lines in summary bar
This commit is contained in:
@@ -53,7 +53,7 @@ public class NavHelper {
|
||||
String tip = _tooltips.get(name);
|
||||
if (tip != null)
|
||||
buf.append("title=\"").append(tip).append("\" ");
|
||||
buf.append('>').append(name).append("</a>");
|
||||
buf.append('>').append(name.replace(" ", " ")).append("</a>");
|
||||
}
|
||||
return buf.toString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user