diff options
| author | Leyla Farazha <leyla@lindenlab.com> | 2009-11-19 16:29:20 -0800 |
|---|---|---|
| committer | Leyla Farazha <leyla@lindenlab.com> | 2009-11-19 16:29:20 -0800 |
| commit | c994b57fa483d09367546d27434c25a316d86fe0 (patch) | |
| tree | 1c1c0b87553e18a48027bb41c9638c9cd20410f1 /indra/newview/llagent.cpp | |
| parent | cb8d2cb0ac0f60604a0698c6609615230d5b283d (diff) | |
EXT-2490 Right click context menu for objects should include build tools
EXT-2541 Help > Report Abuse screenshot not showing up
EXT-2549 Crash on exit from mouse-look (Mini Map related)
EXT-2548 Viewer freezes when going out of the mouselook while there are more than two floaters
EXT-1983 [BSI] Trying to edit a script in a no mod object pops up script editor with "object out of range"
reviewed by Richard
Diffstat (limited to 'indra/newview/llagent.cpp')
| -rw-r--r-- | indra/newview/llagent.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 7a540a45c4..e658b9af6a 100644 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -2810,7 +2810,11 @@ void LLAgent::endAnimationUpdateUI() LLFloaterReg::restoreVisibleInstances(); #else // Use this for now LLFloaterView::skip_list_t skip_list; - skip_list.insert(LLFloaterReg::findInstance("mini_map")); + if (LLFloaterReg::findInstance("mini_map")) + { + skip_list.insert(LLFloaterReg::findInstance("mini_map")); + } + gFloaterView->popVisibleAll(skip_list); #endif mViewsPushed = FALSE; |
