Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into fixgenerateButton
Browse files Browse the repository at this point in the history
* upstream/master:
  Fix showing multiple icons for one menu entry - fixes #4384 (#4392)
  • Loading branch information
Siedlerchr committed Oct 22, 2018
2 parents d08da62 + e76a287 commit b7deca8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public Icon getSmallIcon() {
public Node getGraphicNode() {
GlyphIcons icon = icons.get(0);

Text text = new Text(icon.unicode());
Text text = new Text(unicode);
text.getStyleClass().add("glyph-icon");
text.setStyle(String.format("-fx-font-family: %s;", icon.fontFamily()));

Expand Down

0 comments on commit b7deca8

Please sign in to comment.