summaryrefslogtreecommitdiff
path: root/indra/newview/llsidetray.cpp
diff options
context:
space:
mode:
authorVadim ProductEngine <vsavchuk@productengine.com>2010-11-22 16:09:33 +0200
committerVadim ProductEngine <vsavchuk@productengine.com>2010-11-22 16:09:33 +0200
commit90f496b3028241afb62ab6db3cdf4dc8ef3abe0e (patch)
treec32aea6eddc778c96fd0c36167b0db602681978b /indra/newview/llsidetray.cpp
parentabf406e3d5f957d66618afaf02f54d0d686bda67 (diff)
STORM-461 FIXED Hide sidebar tab buttons in mouselook mode.
Diffstat (limited to 'indra/newview/llsidetray.cpp')
-rw-r--r--indra/newview/llsidetray.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llsidetray.cpp b/indra/newview/llsidetray.cpp
index 81b2fc0ae0..a4f855f279 100644
--- a/indra/newview/llsidetray.cpp
+++ b/indra/newview/llsidetray.cpp
@@ -1028,7 +1028,8 @@ void LLSideTray::arrange()
}
// The tab buttons should be shown only if there is at least one non-detached tab.
- mButtonsPanel->setVisible(hasTabs());
+ // Also hide them in mouse-look mode.
+ mButtonsPanel->setVisible(hasTabs() && !gAgentCamera.cameraMouselook());
}
// Detach those tabs that were detached when the viewer exited last time.