mirror of
https://github.com/FroggMaster/CreamInstaller.git
synced 2026-07-28 14:47:04 -07:00
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.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user