Increase font size range

This commit is contained in:
SiboVG 2023-08-09 01:31:28 +02:00
parent 1d89b9ba4f
commit 7a1711d750

View File

@ -119,7 +119,7 @@ public class GeneralPreferencesPanel extends PreferencesPanel {
//// Font size
this.add(new JLabel(trans.get("generalprefs.lbl.FontSize")), "gapright para");
final IntegerModel fontSizeModel = new IntegerModel(preferences, "UIFontSize", 9, 15);
final IntegerModel fontSizeModel = new IntegerModel(preferences, "UIFontSize", 5, 25);
final JSpinner fontSizeSpinner = new JSpinner(fontSizeModel.getSpinnerModel());
fontSizeSpinner.setEditor(new SpinnerEditor(fontSizeSpinner));
this.add(fontSizeSpinner, "growx, wrap");