From 9468134c1afdd94ee168668c516050a50d6683cd Mon Sep 17 00:00:00 2001 From: Frog Date: Mon, 20 Jul 2026 21:39:43 -0700 Subject: [PATCH] Fix Bug Where Theme Not applying to Debug Window - Fixes a bug where the selected them wasn't applying to the debug window until the app was relaunched. --- CreamInstaller/Forms/SettingsForm.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CreamInstaller/Forms/SettingsForm.cs b/CreamInstaller/Forms/SettingsForm.cs index 7d660f7..ce4eaca 100644 --- a/CreamInstaller/Forms/SettingsForm.cs +++ b/CreamInstaller/Forms/SettingsForm.cs @@ -44,7 +44,11 @@ internal sealed partial class SettingsForm : CustomForm ProgramData.SaveSettings(Program.AppSettings); if (wasDarkModeEnabled != darkModeCheckBox.Checked) + { ThemeManager.ApplyToAllOpenForms(); + if (DebugForm.IsOpen) + ThemeManager.Apply(DebugForm.Current); + } if (wasSortByName != sortByNameCheckBox.Checked) MainForm.Current?.UpdateSortOrder(sortByNameCheckBox.Checked);