From 5c2af2cdd993c0be6a47f96bdbea79f4e0317f25 Mon Sep 17 00:00:00 2001 From: Martin Barker Date: Mon, 28 Jun 2021 00:37:03 +0100 Subject: [PATCH] updated so that when updating already custom control it notifies the user that the save has been successfull --- SeventhHeavenUI/Windows/ControlMappingWindow.xaml.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SeventhHeavenUI/Windows/ControlMappingWindow.xaml.cs b/SeventhHeavenUI/Windows/ControlMappingWindow.xaml.cs index 09d24371..6f80ea61 100644 --- a/SeventhHeavenUI/Windows/ControlMappingWindow.xaml.cs +++ b/SeventhHeavenUI/Windows/ControlMappingWindow.xaml.cs @@ -89,6 +89,10 @@ private void btnSaveChanges_Click(object sender, RoutedEventArgs e) else { ViewModel.SaveChangesToFile(); + MessageDialogWindow.Show( + "In-Game Controls have been successfully updated", + "Controls Saved" + ); } }