diff options
author | Teravus Ovares | 2008-02-12 15:47:37 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-02-12 15:47:37 +0000 |
commit | 49a6ac300fd1bcda3742f577feef6f7a43ecfc53 (patch) | |
tree | 70f7b706b63a8662027a1eba52f435484197b182 /OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |
parent | * various minuscule code convention conformance fixes (diff) | |
download | opensim-SC_OLD-49a6ac300fd1bcda3742f577feef6f7a43ecfc53.zip opensim-SC_OLD-49a6ac300fd1bcda3742f577feef6f7a43ecfc53.tar.gz opensim-SC_OLD-49a6ac300fd1bcda3742f577feef6f7a43ecfc53.tar.bz2 opensim-SC_OLD-49a6ac300fd1bcda3742f577feef6f7a43ecfc53.tar.xz |
* This fixes the object edit box's flipping checkboxes when you modify one of the permission masks or Locked status using the available checkboxes.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectPart.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs index 85e4c7f..1d5dd5b 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |||
@@ -1610,8 +1610,24 @@ namespace OpenSim.Region.Environment.Scenes | |||
1610 | NextOwnerMask = ApplyMask(NextOwnerMask, set, mask); | 1610 | NextOwnerMask = ApplyMask(NextOwnerMask, set, mask); |
1611 | break; | 1611 | break; |
1612 | } | 1612 | } |
1613 | SendFullUpdateToAllClients(); | ||
1613 | 1614 | ||
1614 | // ScheduleFullUpdate(); | 1615 | SendObjectPropertiesToClient(AgentID); |
1616 | |||
1617 | |||
1618 | } | ||
1619 | } | ||
1620 | |||
1621 | private void SendObjectPropertiesToClient(LLUUID AgentID) | ||
1622 | { | ||
1623 | List<ScenePresence> avatars = m_parentGroup.GetScenePresences(); | ||
1624 | for (int i = 0; i < avatars.Count; i++) | ||
1625 | { | ||
1626 | // Ugly reference :( | ||
1627 | if (avatars[i].UUID == AgentID) | ||
1628 | { | ||
1629 | m_parentGroup.GetProperties(avatars[i].ControllingClient); | ||
1630 | } | ||
1615 | } | 1631 | } |
1616 | } | 1632 | } |
1617 | 1633 | ||