diff --git a/displaymagician/uiforms/displayprofileform.cs b/displaymagician/uiforms/displayprofileform.cs index e8a3886..533db4b 100644 --- a/displaymagician/uiforms/displayprofileform.cs +++ b/displaymagician/uiforms/displayprofileform.cs @@ -681,6 +681,11 @@ namespace DisplayMagician.UIForms ProfileToolsForm profileToolsForm = new ProfileToolsForm(); profileToolsForm.CurrentProfile = _selectedProfile; profileToolsForm.ShowDialog(this); + if (profileToolsForm.DialogResult == DialogResult.OK) + { + // If we change something, then we refresh the current profile + btn_view_current.PerformClick(); + } } } } \ No newline at end of file