From 14069fbd722156c3a3abce70e7a912941556d4ab Mon Sep 17 00:00:00 2001 From: Trigg Date: Wed, 15 Nov 2023 14:19:28 +0000 Subject: [PATCH] - Always check your logic, kids. - Fixed #317 --- discover_overlay/settings_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discover_overlay/settings_window.py b/discover_overlay/settings_window.py index c08a2ef..89dac5d 100644 --- a/discover_overlay/settings_window.py +++ b/discover_overlay/settings_window.py @@ -304,7 +304,7 @@ class MainSettingsWindow(): self.widget['voice_font'].set_font(font) title_font = config.get("main", "title_font", fallback=None) if title_font: - self.widget['voice_title_font'].set_font(font) + self.widget['voice_title_font'].set_font(title_font) self.widget['voice_icon_spacing'].set_value( config.getint("main", "icon_spacing", fallback=8))