Have regression testing return to the listbox window when a test has completed.
This commit is contained in:
@ -1214,13 +1214,21 @@ namespace EduNetworkBuilder
|
||||
}
|
||||
}
|
||||
}
|
||||
answer = MessageBox.Show(NB.Translate("N_MarkAsSolvedDone"), NB.Translate("_Solved"), MessageBoxButtons.YesNo);
|
||||
|
||||
if (answer == DialogResult.Yes)
|
||||
//If we are processing an invisible replay, do not prompt...
|
||||
if (!(NB.ProcessingInvisibleNetwork() && oursettings != null && oursettings.ReplayMode))
|
||||
{
|
||||
KillAllExtraWindows(true);
|
||||
ListBoxWindow LBW = new ListBoxWindow();
|
||||
LBW.ShowDialog();
|
||||
answer = MessageBox.Show(NB.Translate("N_MarkAsSolvedDone"), NB.Translate("_Solved"), MessageBoxButtons.YesNo);
|
||||
|
||||
if (answer == DialogResult.Yes)
|
||||
{
|
||||
KillAllExtraWindows(true);
|
||||
ListBoxWindow LBW = new ListBoxWindow();
|
||||
LBW.ShowDialog();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
//We should go back to our replay window.
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user