From d836ed7dd9b91911b4291a9e375b1660cba3ec70 Mon Sep 17 00:00:00 2001 From: Terry MacDonald Date: Sat, 5 Feb 2022 21:30:40 +1300 Subject: [PATCH] Final displayform changes --- displaymagician/uiforms/displayprofileform.cs | 5 +++++ 1 file changed, 5 insertions(+) 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