diff --git a/Ginger/Ginger/Run/RunSetsExecutionsHistoryPage.xaml.cs b/Ginger/Ginger/Run/RunSetsExecutionsHistoryPage.xaml.cs index 7edf2c6f28..3d2928f800 100644 --- a/Ginger/Ginger/Run/RunSetsExecutionsHistoryPage.xaml.cs +++ b/Ginger/Ginger/Run/RunSetsExecutionsHistoryPage.xaml.cs @@ -498,6 +498,10 @@ private void LoadRunsetButton_Click(object sender, RoutedEventArgs e) { LoadRunsetEventHandler? handler = LoadRunset; handler?.Invoke(runset); + if (runset.IsVirtual) + { + runset.DirtyStatus = Amdocs.Ginger.Common.Enums.eDirtyStatus.Modified; + } }); } catch(Exception ex)