summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRichard Linden <none@none>2011-03-01 19:49:19 -0800
committerRichard Linden <none@none>2011-03-01 19:49:19 -0800
commit2c9cd5f4b24ea88e6c83d55cec2122593d2810f7 (patch)
tree9baad6b8ad939dbf4ee6daba5cb220477109001d /indra
parentbebdf803c4b43078bd09d174d6a19e7baba4e0ef (diff)
SOCIAL-612 FIX Double Click on mini-map in People Nearby tab opens world map
double click does nothing now
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llnetmap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llnetmap.cpp b/indra/newview/llnetmap.cpp
index 93039d935d..25f67afd5d 100644
--- a/indra/newview/llnetmap.cpp
+++ b/indra/newview/llnetmap.cpp
@@ -920,7 +920,7 @@ BOOL LLNetMap::handleDoubleClick(S32 x, S32 y, MASK mask)
// If DoubleClickTeleport is on, double clicking the minimap will teleport there
gAgent.teleportViaLocationLookAt(pos_global);
}
- else
+ else if (gSavedSettings.getBOOL("DoubleClickShowWorldMap"))
{
LLFloaterReg::showInstance("world_map");
}