Skip to content

Commit 88b138b

Browse files
committed
Set default font size to 15
1 parent 827a605 commit 88b138b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/brainwine/Bootstrap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ private void createMainView() throws InvocationTargetException, InterruptedExcep
106106
UIManager.put("Spinner.editorAlignment", JTextField.LEFT);
107107
UIManager.put("TitlePane.unifiedBackground", false);
108108
UIManager.put("Button.foreground", UIManager.get("MenuBar.foreground"));
109-
SwingUtils.setDefaultFontSize(Math.min(28, Math.max(10, GuiPreferences.getInt(GuiPreferences.FONT_SIZE_KEY, 14))));
109+
SwingUtils.setDefaultFontSize(Math.min(28, Math.max(10, GuiPreferences.getInt(GuiPreferences.FONT_SIZE_KEY, 15))));
110110
SwingUtils.setMenuBarEmbedded(GuiPreferences.getBoolean(GuiPreferences.EMBED_MENU_BAR_KEY, true));
111111

112112
// Check read/write permissions

src/main/java/brainwine/gui/SettingsPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ private void resetSettings(boolean showPrompt) {
191191
"Confirmation", JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION) {
192192
themeBox.setSelectedItem(ThemeManager.getTheme(FlatMaterialDarkerIJTheme.class));
193193
tabPlacementBox.setSelectedIndex(0);
194-
fontSizeSpinner.setValue(14);
194+
fontSizeSpinner.setValue(15);
195195
embedMenuBarCheckbox.setSelected(true);
196196

197197
if(OperatingSystem.isWindows()) {

0 commit comments

Comments
 (0)