diff options
author | Jonathan Yap <none@none> | 2010-12-22 08:47:43 -0500 |
---|---|---|
committer | Jonathan Yap <none@none> | 2010-12-22 08:47:43 -0500 |
commit | ef5f9ee893bd9840bf3b043ece654a6e786d5170 (patch) | |
tree | fffcb4adbaa668ec4aaccbfa85fa0234661a3a92 /indra/newview/llfloatermap.cpp | |
parent | 91021bf905286bcb5ce0f14e19a55b4800a9ce99 (diff) |
STORM-466 Fix for: minimap cannot be reset to default zoom
Diffstat (limited to 'indra/newview/llfloatermap.cpp')
-rw-r--r-- | indra/newview/llfloatermap.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/indra/newview/llfloatermap.cpp b/indra/newview/llfloatermap.cpp index 351b9ac5da..0b629bf0ae 100644 --- a/indra/newview/llfloatermap.cpp +++ b/indra/newview/llfloatermap.cpp @@ -288,7 +288,16 @@ void LLFloaterMap::handleZoom(const LLSD& userdata) std::string level = userdata.asString(); F32 scale = 0.0f; - if (level == std::string("close")) + if (level == std::string("default")) + { + LLControlVariable *pvar = gSavedSettings.getControl("MiniMapScale"); + if(pvar) + { + pvar->resetToDefault(); + scale = gSavedSettings.getF32("MiniMapScale"); + } + } + else if (level == std::string("close")) scale = LLNetMap::MAP_SCALE_MAX; else if (level == std::string("medium")) scale = LLNetMap::MAP_SCALE_MID; |