From fdf53983f004129008b5fab4b9d301eee38b94b7 Mon Sep 17 00:00:00 2001 From: alcexhim Date: Mon, 18 May 2015 13:12:19 -0400 Subject: [PATCH] Fixed ObjectModelReference to point to full path so the items don't get lost in the list --- .../ObjectModels/Shortcut/ShortcutObjectModel.cs | 2 +- .../ObjectModels/Contact/ContactObjectModel.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }