aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden
diff options
context:
space:
mode:
authorAliciaRaven2015-04-25 05:39:20 +0100
committerBlueWall2015-04-25 00:06:48 -0500
commitcde4e7ec865b1e6c933fad0f6b14e6df55123f0c (patch)
treedaa1b86600e37ed93edc78cabd261b8038e82ee9 /OpenSim/Region/ClientStack/Linden
parentAllow setting profilecut diff to 0.02 from scripts just like from viewer. (diff)
downloadopensim-SC_OLD-cde4e7ec865b1e6c933fad0f6b14e6df55123f0c.zip
opensim-SC_OLD-cde4e7ec865b1e6c933fad0f6b14e6df55123f0c.tar.gz
opensim-SC_OLD-cde4e7ec865b1e6c933fad0f6b14e6df55123f0c.tar.bz2
opensim-SC_OLD-cde4e7ec865b1e6c933fad0f6b14e6df55123f0c.tar.xz
Fix the click to buy prim dialog not being displayed with alpha viewers after recent changes to viewer code by LL.
Recent viewer changes by linden lab now require more information when requesting prim tooltip data. The object properties must now be sent when the viewer requests the object family properties used to display the tool tip. Thanks to Liru for finding the viewer commit that broke this feature in OS. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 311dd31..855342f 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -4465,7 +4465,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4465 { 4465 {
4466 uint priority = 0; // time based ordering only 4466 uint priority = 0; // time based ordering only
4467 lock (m_entityProps.SyncRoot) 4467 lock (m_entityProps.SyncRoot)
4468 m_entityProps.Enqueue(priority, new ObjectPropertyUpdate(entity,requestFlags,true,false)); 4468 m_entityProps.Enqueue(priority, new ObjectPropertyUpdate(entity,requestFlags,true,true));
4469 } 4469 }
4470 4470
4471 private void ResendPropertyUpdate(ObjectPropertyUpdate update) 4471 private void ResendPropertyUpdate(ObjectPropertyUpdate update)