Console: Prevent two-word translations from splitting across lines in summary bar

This commit is contained in:
zzz
2014-12-09 15:16:41 +00:00
parent 4f3244e93b
commit 4e529a68d3
2 changed files with 23 additions and 13 deletions

View File

@@ -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(" ", "&nbsp;")).append("</a>");
}
return buf.toString();
}