summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerwindow.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2011-10-13 20:31:41 -0700
committerRichard Linden <none@none>2011-10-13 20:31:41 -0700
commit8e3717e187766f0ad24f29886ae930be186a4394 (patch)
tree6eae9bc20ba436e4cbc965c4a9265880f4ce5409 /indra/newview/llviewerwindow.cpp
parent706aa7078276fbeaaaa51b57cd229714277438f7 (diff)
EXP-1323 FIX Mouselook text "Press ESC to return to World View" overlaps with bottom toolbar if mode is icon only
hide toolbars in mouselook hide top_info_bar when hiding UI disable mouselook when hiding UI fixed layout of more button in navigation bar
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r--indra/newview/llviewerwindow.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index 665b31a427..92dc352cf4 100644
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -4987,11 +4987,13 @@ void LLViewerWindow::setUIVisibility(bool visible)
gToolBarView->setToolBarsVisible(visible);
}
+ mRootView->getChildView("topinfo_bar_container")->setVisible(visible);
mRootView->getChildView("nav_bar_container")->setVisible(visible);
mRootView->getChildView("status_bar_container")->setVisible(visible);
if (!visible)
{
+ gAgentCamera.changeCameraToDefault();
gFloaterView->hideAllFloaters();
}
else