diff --git a/DisplayMagician/UIForms/DisplayProfileForm.cs b/DisplayMagician/UIForms/DisplayProfileForm.cs index e9fa68e..6d5f116 100644 --- a/DisplayMagician/UIForms/DisplayProfileForm.cs +++ b/DisplayMagician/UIForms/DisplayProfileForm.cs @@ -51,8 +51,10 @@ namespace DisplayMagician.UIForms } // Apply the Profile - Program.ApplyProfile(_selectedProfile); - + if (Program.ApplyProfile(_selectedProfile)) + { + ChangeSelectedProfile(_selectedProfile); + } }