diff options
author | Dessie Linden <dessie@lindenlab.com> | 2010-06-23 10:55:32 -0700 |
---|---|---|
committer | Dessie Linden <dessie@lindenlab.com> | 2010-06-23 10:55:32 -0700 |
commit | 70cf100f747dd3511c5e1dda668ddb97487b98ab (patch) | |
tree | 5108f22422673308bbb705ad92becec254deee5c /indra/newview/llfloatermap.cpp | |
parent | 63be74f57c5a520e308a90d44e58ae5e5ba2e6bf (diff) | |
parent | 6c57abb295447f2b44eb833cb77fa718dc2b1118 (diff) |
Merged from viewer-release
Diffstat (limited to 'indra/newview/llfloatermap.cpp')
-rw-r--r-- | indra/newview/llfloatermap.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/indra/newview/llfloatermap.cpp b/indra/newview/llfloatermap.cpp index e74bfae026..df176a1f6d 100644 --- a/indra/newview/llfloatermap.cpp +++ b/indra/newview/llfloatermap.cpp @@ -284,4 +284,15 @@ void LLFloaterMap::handleStopTracking (const LLSD& userdata) LLTracker::stopTracking ((void*)LLTracker::isTracking(NULL)); } } - +void LLFloaterMap::setMinimized(BOOL b) +{ + LLFloater::setMinimized(b); + if(b) + { + setTitle(getString("mini_map_caption")); + } + else + { + setTitle(""); + } +} |