Fixed ObjectModelReference to point to full path so the items don't get lost in the list

This commit is contained in:
Michael Becker 2015-05-18 13:12:19 -04:00
parent 5f898a0565
commit fdf53983f0
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ namespace UniversalEditor.ObjectModels.Shortcut
_omr = base.MakeReferenceInternal();
_omr.Title = "Shortcut";
_omr.Description = "Allows the user to find a file or resource located in a different directory or folder from the place where the shortcut is located.";
_omr.Path = new string[] { "General" };
_omr.Path = new string[] { "General", "Shortcut" };
}
return _omr;
}

View File

@ -14,7 +14,7 @@ namespace UniversalEditor.ObjectModels.Contact
{
_omr = base.MakeReferenceInternal();
_omr.Title = "Contact";
_omr.Path = new string[] { "General" };
_omr.Path = new string[] { "General", "Contact" };
}
return _omr;
}