When we load a user, open the profile immediately

This commit is contained in:
Tim Young 2017-07-31 11:36:30 -05:00
parent 0a53823b2d
commit 60881f8dcf
1 changed files with 5 additions and 0 deletions

View File

@ -1667,6 +1667,11 @@ namespace EduNetworkBuilder
{
CurrentUser = new PersonClass(filename);
UpdateMenu();
//Now, open a new window to edit them.
PersonProfileForm PPF = new PersonProfileForm(CurrentUser);
CurrentUser = PPF.Edit();
UpdateMenu();
}
else
{