diff options
author | Alexei Arabadji <aarabadji@productengine.com> | 2010-06-02 15:55:25 +0300 |
---|---|---|
committer | Alexei Arabadji <aarabadji@productengine.com> | 2010-06-02 15:55:25 +0300 |
commit | 508923ac0025a590996ade8503acaad850f26376 (patch) | |
tree | 833d49dc940a5c819b5b01cd43c0878255ac8e26 /indra/newview/llparticipantlist.cpp | |
parent | 0d3a8a56abd174fb282119c5c085317b033a9d7e (diff) |
EXT-7402 FIXED Made 'Ok'('mute all') as default action.
reviewed by Mike Antipov at https://codereview.productengine.com/secondlife/r/484/
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llparticipantlist.cpp')
-rw-r--r-- | indra/newview/llparticipantlist.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llparticipantlist.cpp b/indra/newview/llparticipantlist.cpp index 4f0946774a..f020ad9bc2 100644 --- a/indra/newview/llparticipantlist.cpp +++ b/indra/newview/llparticipantlist.cpp @@ -827,7 +827,8 @@ void LLParticipantList::LLParticipantListMenu::moderateVoiceAllParticipants(bool void LLParticipantList::LLParticipantListMenu::confirmMuteAllCallback(const LLSD& notification, const LLSD& response) { S32 option = LLNotificationsUtil::getSelectedOption(notification, response); - if (option != 1) + // if Cancel pressed + if (option == 1) { return; } |