diff --git a/CSharp/Plugins/UniversalEditor.Essential/ObjectModels/Shortcut/ShortcutObjectModel.cs b/CSharp/Plugins/UniversalEditor.Essential/ObjectModels/Shortcut/ShortcutObjectModel.cs index 2fde5b21..99cef246 100644 --- a/CSharp/Plugins/UniversalEditor.Essential/ObjectModels/Shortcut/ShortcutObjectModel.cs +++ b/CSharp/Plugins/UniversalEditor.Essential/ObjectModels/Shortcut/ShortcutObjectModel.cs @@ -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; } diff --git a/CSharp/Plugins/UniversalEditor.Plugins.AddressBook/ObjectModels/Contact/ContactObjectModel.cs b/CSharp/Plugins/UniversalEditor.Plugins.AddressBook/ObjectModels/Contact/ContactObjectModel.cs index 82fe942e..23ceec55 100644 --- a/CSharp/Plugins/UniversalEditor.Plugins.AddressBook/ObjectModels/Contact/ContactObjectModel.cs +++ b/CSharp/Plugins/UniversalEditor.Plugins.AddressBook/ObjectModels/Contact/ContactObjectModel.cs @@ -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; }