Browse Source

increase tab icon size by 1pt

terminal
Craig Raw 4 years ago
parent
commit
c8aa1b0a19
  1. 4
      src/main/java/com/sparrowwallet/sparrow/AppController.java

4
src/main/java/com/sparrowwallet/sparrow/AppController.java

@ -957,7 +957,7 @@ public class AppController implements Initializable {
}
Tab tab = new Tab("");
Glyph glyph = new Glyph(FontAwesome5.FONT_NAME, FontAwesome5.Glyph.WALLET);
glyph.setFontSize(9.0);
glyph.setFontSize(10.0);
glyph.setOpacity(TAB_LABEL_GRAPHIC_OPACITY_ACTIVE);
Label tabLabel = new Label(name);
tabLabel.setGraphic(glyph);
@ -1101,7 +1101,7 @@ public class AppController implements Initializable {
Tab tab = new Tab("");
Glyph glyph = new Glyph("FontAwesome", FontAwesome.Glyph.SEND);
glyph.setFontSize(9.0);
glyph.setFontSize(10.0);
glyph.setOpacity(TAB_LABEL_GRAPHIC_OPACITY_ACTIVE);
Label tabLabel = new Label(tabName);
tabLabel.setGraphic(glyph);

Loading…
Cancel
Save