Skip to content

Commit

Permalink
InventoryNodes are now sortable in their trees - w/o a nre
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSPoon committed May 30, 2012
1 parent d97e03d commit a372d7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenMetaverse/InventoryNodeDictionary.cs
Expand Up @@ -105,7 +105,7 @@ public InventoryNodeDictionary(InventoryNode parentNode)
lock (syncRoot)
{
Dictionary[key] = value;
this.SDictionary[key] = value;
if (Settings.SORT_INVENTORY) this.SDictionary[key] = value;
}
}
}
Expand Down Expand Up @@ -133,7 +133,7 @@ public void Add(UUID key, InventoryNode value)
lock (syncRoot)
{
Dictionary[key] = value;
this.SDictionary.Add(key, value);
if (Settings.SORT_INVENTORY) this.SDictionary.Add(key, value);
}
}

Expand Down

0 comments on commit a372d7c

Please sign in to comment.