summaryrefslogtreecommitdiff
path: root/indra/newview/llfloatermap.cpp
diff options
context:
space:
mode:
authorCosmic Linden <cosmic@lindenlab.com>2022-02-28 11:55:15 -0800
committerCosmic Linden <cosmic@lindenlab.com>2022-03-03 12:30:59 -0800
commit0e927e92f33f4a421a3cd56f7b9bc65c19003df2 (patch)
tree0a3fe9d2e541c5a0e26ff18ffe8d8134590b39ab /indra/newview/llfloatermap.cpp
parent81da0dd2db7261e402c53445efa1d012177a4cfe (diff)
SL-16824: Fix minimap tooltip hint not updating until viewer restart (double click to show map vs double click to teleport)
Diffstat (limited to 'indra/newview/llfloatermap.cpp')
-rwxr-xr-xindra/newview/llfloatermap.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/indra/newview/llfloatermap.cpp b/indra/newview/llfloatermap.cpp
index ab39d08830..95c43805d4 100755
--- a/indra/newview/llfloatermap.cpp
+++ b/indra/newview/llfloatermap.cpp
@@ -84,14 +84,8 @@ BOOL LLFloaterMap::postBuild()
mMap->setParcelSaleAreaMsg(getString("ParcelSaleAreaMsg"));
mMap->setParcelOwnerMsg(getString("ParcelOwnerMsg"));
mMap->setRegionNameMsg(getString("RegionNameMsg"));
- if (gSavedSettings.getBOOL("DoubleClickTeleport"))
- {
- mMap->setToolTipHintMsg(getString("AltToolTipHintMsg"));
- }
- else if (gSavedSettings.getBOOL("DoubleClickShowWorldMap"))
- {
- mMap->setToolTipHintMsg(getString("ToolTipHintMsg"));
- }
+ mMap->setToolTipHintMsg(getString("ToolTipHintMsg"));
+ mMap->setAltToolTipHintMsg(getString("AltToolTipHintMsg"));
sendChildToBack(mMap);
mTextBoxNorth = getChild<LLTextBox>("floater_map_north");