aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneGraph.cs
diff options
context:
space:
mode:
authorMelanie Thielker2010-05-31 19:00:02 +0200
committerMelanie Thielker2010-05-31 19:00:02 +0200
commitd4b4cbf5a5fead727b5e2e48f69d2016eb942cff (patch)
tree4382d4fd3d53cf6bae3daf971793f19e8e1aa967 /OpenSim/Region/Framework/Scenes/SceneGraph.cs
parentFix a nullref in EventManager caused by RegionReady not setting the scene (diff)
downloadopensim-SC_OLD-d4b4cbf5a5fead727b5e2e48f69d2016eb942cff.zip
opensim-SC_OLD-d4b4cbf5a5fead727b5e2e48f69d2016eb942cff.tar.gz
opensim-SC_OLD-d4b4cbf5a5fead727b5e2e48f69d2016eb942cff.tar.bz2
opensim-SC_OLD-d4b4cbf5a5fead727b5e2e48f69d2016eb942cff.tar.xz
Fix create selection getting overwritten by multiple updates for the same prim.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneGraph.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
index 445c2c8..5fbc658 100644
--- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
@@ -1542,7 +1542,7 @@ namespace OpenSim.Region.Framework.Scenes
1542 1542
1543 // We need to explicitly resend the newly link prim's object properties since no other actions 1543 // We need to explicitly resend the newly link prim's object properties since no other actions
1544 // occur on link to invoke this elsewhere (such as object selection) 1544 // occur on link to invoke this elsewhere (such as object selection)
1545 parentGroup.RootPart.AddFlag(PrimFlags.CreateSelected); 1545 parentGroup.RootPart.CreateSelected = true;
1546 parentGroup.TriggerScriptChangedEvent(Changed.LINK); 1546 parentGroup.TriggerScriptChangedEvent(Changed.LINK);
1547 } 1547 }
1548 finally 1548 finally