InventoryNodes are now sortable in their trees - w/o a nre

This commit is contained in:
Douglas R. Miles
2012-05-30 16:46:11 -07:00
parent d97e03dc84
commit a372d7c6a2

View File

@@ -105,7 +105,7 @@ namespace OpenMetaverse
lock (syncRoot)
{
Dictionary[key] = value;
this.SDictionary[key] = value;
if (Settings.SORT_INVENTORY) this.SDictionary[key] = value;
}
}
}
@@ -133,7 +133,7 @@ namespace OpenMetaverse
lock (syncRoot)
{
Dictionary[key] = value;
this.SDictionary.Add(key, value);
if (Settings.SORT_INVENTORY) this.SDictionary.Add(key, value);
}
}