Skip to content
Snippets Groups Projects
Commit ca9d39c6 authored by Cinder's avatar Cinder
Browse files

SL-3404 Don't send ParcelPropertiesRequest on every cursor position change

parent a72a4cb3
No related branches found
No related tags found
No related merge requests found
...@@ -371,6 +371,7 @@ Cinder Roxley ...@@ -371,6 +371,7 @@ Cinder Roxley
STORM-2116 STORM-2116
STORM-2127 STORM-2127
STORM-2144 STORM-2144
SL-3404
Clara Young Clara Young
Coaldust Numbers Coaldust Numbers
VWR-1095 VWR-1095
......
...@@ -870,13 +870,11 @@ static bool needs_tooltip(LLSelectNode* nodep) ...@@ -870,13 +870,11 @@ static bool needs_tooltip(LLSelectNode* nodep)
BOOL LLToolPie::handleTooltipLand(std::string line, std::string tooltip_msg) BOOL LLToolPie::handleTooltipLand(std::string line, std::string tooltip_msg)
{ {
LLViewerParcelMgr::getInstance()->setHoverParcel( mHoverPick.mPosGlobal ); // Do not show hover for land unless prefs are set to allow it.
//
// Do not show hover for land unless prefs are set to allow it.
//
if (!gSavedSettings.getBOOL("ShowLandHoverTip")) return TRUE; if (!gSavedSettings.getBOOL("ShowLandHoverTip")) return TRUE;
LLViewerParcelMgr::getInstance()->setHoverParcel( mHoverPick.mPosGlobal );
// Didn't hit an object, but since we have a land point we // Didn't hit an object, but since we have a land point we
// must be hovering over land. // must be hovering over land.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment