Vaadin 7 Shortcuts - add space in table context menu #PL-2459

This commit is contained in:
Konstantin Devyatkin 2013-09-04 15:07:13 +00:00
parent 09c5c67482
commit 718ac86845

View File

@ -29,7 +29,7 @@ class WebActionWrapper extends com.vaadin.event.Action {
StringBuilder sb = new StringBuilder();
sb.append(action.getCaption());
if (action.getShortcut() != null) {
sb.append("(").append(action.getShortcut().format()).append(")");
sb.append(" (").append(action.getShortcut().format()).append(")");
}
return sb.toString();
}