reporting when things done

This commit is contained in:
Tim Young 2018-09-28 13:37:59 -05:00
parent 3531a119a0
commit 49b2f63698
2 changed files with 3 additions and 1 deletions

View File

@ -1187,6 +1187,7 @@ namespace EduNetworkBuilder
} }
} }
//kill all extra windows that no longer need to be open. //kill all extra windows that no longer need to be open.
if(!NB.ProcessingInvisibleNetwork())
KillAllExtraWindows(); KillAllExtraWindows();
if (WhatFrom == null) if (WhatFrom == null)

View File

@ -2868,6 +2868,7 @@ namespace EduNetworkBuilder
{ {
myNetwork.Tick(true); myNetwork.Tick(true);
myNetwork.NonVisualProcessPacketsMultipleTimes(); myNetwork.NonVisualProcessPacketsMultipleTimes();
myNetwork.TestForCompletion(false); //Just in case it needs to be tested
} }
NB.UnregisterInvisibleNetwork(); NB.UnregisterInvisibleNetwork();
} }