diff options
| author | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-11-23 14:33:05 +0200 |
|---|---|---|
| committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-11-23 14:33:05 +0200 |
| commit | 710d2fd0f34484495fa494eefa2ffc1cdb3087e3 (patch) | |
| tree | cfd6cc10b61e906b9b686def6f354033e77b8aaa /indra/newview/llviewermenu.cpp | |
| parent | d3773b991a22e2f13b37bc50fafb4477b5b940b1 (diff) | |
EXP-1581 FIXED Added more floaters to the viewer menu.
It is also now possible to toggle microphone via the menu.
See JIRA for the full list of changes.
Diffstat (limited to 'indra/newview/llviewermenu.cpp')
| -rw-r--r-- | indra/newview/llviewermenu.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index 81311b03f5..5056954ffb 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -7976,6 +7976,11 @@ void initialize_menus() // Agent commit.add("Agent.toggleFlying", boost::bind(&LLAgent::toggleFlying)); enable.add("Agent.enableFlying", boost::bind(&LLAgent::enableFlying)); + commit.add("Agent.PressMicrophone", boost::bind(&LLAgent::pressMicrophone, _2)); + commit.add("Agent.ReleaseMicrophone", boost::bind(&LLAgent::releaseMicrophone, _2)); + commit.add("Agent.ToggleMicrophone", boost::bind(&LLAgent::toggleMicrophone, _2)); + enable.add("Agent.IsMicrophoneOn", boost::bind(&LLAgent::isMicrophoneOn, _2)); + enable.add("Agent.IsActionAllowed", boost::bind(&LLAgent::isActionAllowed, _2)); // File menu init_menu_file(); |
