Auto-DHCP on start if we are a teacher and have the check-mark set to do so.

This commit is contained in:
Tim Young 2017-08-14 10:50:56 -05:00
parent 0272ad0363
commit f763016f90
1 changed files with 3 additions and 0 deletions

View File

@ -1632,6 +1632,9 @@ namespace EduNetworkBuilder
UpdateMenu();
UpdateLinks();
UpdateForm();
NBSettings ns = NB.GetSettings();
if (ns != null && ns.AutoDHCPAllMachinesAtNetworkLoad)
myNetwork.DoAllDHCP();
}
}