diff options
author | Eugene Mutavchi <emutavchi@productengine.com> | 2010-01-21 14:35:21 +0200 |
---|---|---|
committer | Eugene Mutavchi <emutavchi@productengine.com> | 2010-01-21 14:35:21 +0200 |
commit | 6cbcf63cb36d3e87dc3d160fd6d31a1fc25e6100 (patch) | |
tree | 75edd4f944e978d8997c25291526077ec01e316f /indra | |
parent | 30fbb126af61c72054b5794c0132c8223babb1f3 (diff) |
Fixed regression bug EXT-4487(Bottom bar context menu: no checkmarks)
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llbottomtray.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llbottomtray.cpp b/indra/newview/llbottomtray.cpp index 988867ef84..bd68d52868 100644 --- a/indra/newview/llbottomtray.cpp +++ b/indra/newview/llbottomtray.cpp @@ -322,7 +322,7 @@ void LLBottomTray::setVisible(BOOL visible) // Chat bar and gesture button are shown even in mouselook mode. // But the move, camera and snapshot buttons shouldn't be displayed. See EXT-3988. - if ("chat_bar" == name || "gesture_panel" == name) + if ("chat_bar" == name || "gesture_panel" == name || (visibility && ("movement_panel" == name || "cam_panel" == name || "snapshot_panel" == name))) continue; else { |