diff options
| author | Justin C. Rounds (Chuck) <chuck@lindenlab.com> | 2009-12-08 14:20:29 -0500 | 
|---|---|---|
| committer | Justin C. Rounds (Chuck) <chuck@lindenlab.com> | 2009-12-08 14:20:29 -0500 | 
| commit | 19f73b4665b7222a2dfff9fd5c0c9567d890ae05 (patch) | |
| tree | 889183af2ca65d9413bce7d0050acc12a8a90327 | |
| parent | 089e44f05995e59f6c2e31674c22aba1c90b292e (diff) | |
| parent | 6711054c248fc0d5d53fe66021a074d38351afbf (diff) | |
Automated merge with ssh://chuck@hg.lindenlab.com/james/gooey/
| -rw-r--r-- | indra/newview/skins/default/xui/en/menu_participant_list.xml | 61 | 
1 files changed, 61 insertions, 0 deletions
| diff --git a/indra/newview/skins/default/xui/en/menu_participant_list.xml b/indra/newview/skins/default/xui/en/menu_participant_list.xml index c3283c6014..5ab327a182 100644 --- a/indra/newview/skins/default/xui/en/menu_participant_list.xml +++ b/indra/newview/skins/default/xui/en/menu_participant_list.xml @@ -2,6 +2,67 @@  <context_menu   layout="topleft"   name="Participant List Context Menu"> + <menu_item_call +     label="View Profile" +     layout="topleft" +     name="View Profile"> +        <menu_item_call.on_click +         function="Avatar.Profile" /> +    </menu_item_call> +    <menu_item_call +     label="Add Friend" +     layout="topleft" +     name="Add Friend"> +        <menu_item_call.on_click +         function="Avatar.AddFriend" /> +        <menu_item_call.on_enable +         function="Avatar.EnableItem" +         parameter="can_add" /> +    </menu_item_call> +    <menu_item_call +     label="IM" +     layout="topleft" +     name="IM"> +        <menu_item_call.on_click +         function="Avatar.IM" /> +    </menu_item_call> +    <menu_item_call +     label="Call" +     layout="topleft" +     name="Call"> +        <menu_item_call.on_click +         function="Avatar.Call" /> +    </menu_item_call> +    <menu_item_call +     enabled="false" +     label="Share" +     layout="topleft" +     name="Share"> +        <menu_item_call.on_click +         function="Avatar.Share" /> +    </menu_item_call> +    <menu_item_call +     label="Pay" +     layout="topleft" +     name="Pay"> +        <menu_item_call.on_click +         function="Avatar.Pay" /> +    </menu_item_call> +    <menu_item_check +     label="Block/Unblock" +     layout="topleft" +     name="Block/Unblock"> +        <menu_item_check.on_click +         function="Avatar.BlockUnblock" /> +        <menu_item_check.on_check +         function="Avatar.CheckItem" +         parameter="is_blocked" /> +        <menu_item_check.on_enable +         function="Avatar.EnableItem" +         parameter="can_block" /> +    </menu_item_check> +        <menu_item_separator +         layout="topleft" />      <menu_item_check       label="Mute Text"       layout="topleft" | 
