Skip to content

Commit

Permalink
- add font size 13
Browse files Browse the repository at this point in the history
  • Loading branch information
derreisende77 committed Aug 7, 2023
1 parent 701fd1a commit ae66573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/mediathek/mainwindow/FontManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ private void updateFontMenuItems() {
// add font sizes
fontMenu.addSeparator();
ArrayList<String> sizes = new ArrayList<>(Arrays.asList(
"10", "11", "12", "14", "16", "18", "20", "24", "28"));
"10", "11", "12", "13", "14", "16", "18", "20", "24", "28"));
if (!sizes.contains(currentSize))
sizes.add(currentSize);
sizes.sort(String.CASE_INSENSITIVE_ORDER);
Expand Down

0 comments on commit ae66573

Please sign in to comment.