register network with ActionCollection when loaded

This commit is contained in:
2018-05-03 12:58:54 -05:00
parent 3d335d32c4
commit 2efca90da1
3 changed files with 35 additions and 0 deletions

View File

@ -421,6 +421,10 @@ namespace EduNetworkBuilder
maxUI = nc.GetUniqueIdentifier;
}
if (maxUI <= UniqueIdentifier) UniqueIdentifier = maxUI + 1;
//Register this in the user settings
NBSettings tSettings = NB.GetSettings();
if (tSettings != null) tSettings.RegisterNetAsStarted(this);
}
public void OpenHelpIfNeeded(bool skipOpeningWindows)