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>
inv-download
AliciaRaven 2015-04-25 05:39:20 +01:00 committed by BlueWall
parent e855c8e711
commit cde4e7ec86
1 changed files with 1 additions and 1 deletions

View File

@ -4465,7 +4465,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{
uint priority = 0; // time based ordering only
lock (m_entityProps.SyncRoot)
m_entityProps.Enqueue(priority, new ObjectPropertyUpdate(entity,requestFlags,true,false));
m_entityProps.Enqueue(priority, new ObjectPropertyUpdate(entity,requestFlags,true,true));
}
private void ResendPropertyUpdate(ObjectPropertyUpdate update)