From f26f65b87b8c3f2cf6900e62c986174d6f819812 Mon Sep 17 00:00:00 2001 From: Siedlerchr Date: Wed, 29 May 2024 20:24:28 +0200 Subject: [PATCH] Apply font size override after setting theme fixes https://github.com/JabRef/jabref/issues/11344 --- CHANGELOG.md | 1 + src/main/java/org/jabref/gui/theme/ThemeManager.java | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cc54e96d63..7e3ec8f9ba1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv - We fixed an issue where the search index was not updated after linking PDF files. [#11317](https://github.com/JabRef/jabref/pull/11317) - We fixed rendering of (first) author with a single letter surname. [forum#4330](https://discourse.jabref.org/t/correct-rendering-of-first-author-with-a-single-letter-surname/4330) - We fixed an issue where the entry editor context menu was not shown correctly when JabRef is opened on a second, extended screen [#11323](https://github.com/JabRef/jabref/issues/11323), [#11174](https://github.com/JabRef/jabref/issues/11174) +- We fixe an issue where the value of "Override default font settings" was not applied on startup [#11344](https://github.com/JabRef/jabref/issues/11344) ### Removed diff --git a/src/main/java/org/jabref/gui/theme/ThemeManager.java b/src/main/java/org/jabref/gui/theme/ThemeManager.java index afdf95fe0ea..76b298a82c9 100644 --- a/src/main/java/org/jabref/gui/theme/ThemeManager.java +++ b/src/main/java/org/jabref/gui/theme/ThemeManager.java @@ -99,6 +99,7 @@ private void updateThemeSettings() { styleSheet -> addStylesheetToWatchlist(styleSheet, this::additionalCssLiveUpdate)); additionalCssLiveUpdate(); + updateFontSettings(); } private void updateFontSettings() {