diff options
author | Justin Clark-Casey (justincc) | 2011-06-10 02:27:45 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-06-10 02:27:45 +0100 |
commit | 2bc8dcfdbd987ca4a47270c62b77a7eb9ac0f851 (patch) | |
tree | fe3fc312528a0dec7fe3fb38abd7d8d516197f62 /OpenSim | |
parent | Removing special casing on failures. This may also fix reports of this issue: (diff) | |
download | opensim-SC_OLD-2bc8dcfdbd987ca4a47270c62b77a7eb9ac0f851.zip opensim-SC_OLD-2bc8dcfdbd987ca4a47270c62b77a7eb9ac0f851.tar.gz opensim-SC_OLD-2bc8dcfdbd987ca4a47270c62b77a7eb9ac0f851.tar.bz2 opensim-SC_OLD-2bc8dcfdbd987ca4a47270c62b77a7eb9ac0f851.tar.xz |
minor: add method doc to make it clear that click action is fired when the click action is changed, not when a prim is clicked
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index cdb4e41..a078291 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -1504,7 +1504,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1504 | } | 1504 | } |
1505 | 1505 | ||
1506 | /// <summary> | 1506 | /// <summary> |
1507 | /// | 1507 | /// Handle a prim description set request from a viewer. |
1508 | /// </summary> | 1508 | /// </summary> |
1509 | /// <param name="primLocalID"></param> | 1509 | /// <param name="primLocalID"></param> |
1510 | /// <param name="description"></param> | 1510 | /// <param name="description"></param> |
@@ -1521,8 +1521,17 @@ namespace OpenSim.Region.Framework.Scenes | |||
1521 | } | 1521 | } |
1522 | } | 1522 | } |
1523 | 1523 | ||
1524 | /// <summary> | ||
1525 | /// Set a click action for the prim. | ||
1526 | /// </summary> | ||
1527 | /// <param name="remoteClient"></param> | ||
1528 | /// <param name="primLocalID"></param> | ||
1529 | /// <param name="clickAction"></param> | ||
1524 | protected internal void PrimClickAction(IClientAPI remoteClient, uint primLocalID, string clickAction) | 1530 | protected internal void PrimClickAction(IClientAPI remoteClient, uint primLocalID, string clickAction) |
1525 | { | 1531 | { |
1532 | // m_log.DebugFormat( | ||
1533 | // "[SCENEGRAPH]: User {0} set click action for {1} to {2}", remoteClient.Name, primLocalID, clickAction); | ||
1534 | |||
1526 | SceneObjectGroup group = GetGroupByPrim(primLocalID); | 1535 | SceneObjectGroup group = GetGroupByPrim(primLocalID); |
1527 | if (group != null) | 1536 | if (group != null) |
1528 | { | 1537 | { |