diff options
Diffstat (limited to 'indra/newview/skins')
-rw-r--r-- | indra/newview/skins/default/xui/en/menu_participant_list.xml | 31 |
1 files changed, 31 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 new file mode 100644 index 0000000000..802064992e --- /dev/null +++ b/indra/newview/skins/default/xui/en/menu_participant_list.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes" ?> +<context_menu + layout="topleft" + name="Participant List Context Menu"> + <menu_item_check + label="Mute Text" + layout="topleft" + name="MuteText"> + <menu_item_check.on_click + function="ParticipantList.ToggleMuteText" /> + <menu_item_check.on_check + function="ParticipantList.CheckItem" + parameter="is_muted" /> + <menu_item_check.on_enable + function="ParticipantList.EnableItem" + parameter="can_mute_text" /> + </menu_item_check> + <menu_item_check + label="Allow text chat" + layout="topleft" + name="AllowTextChat"> + <menu_item_check.on_click + function="ParticipantList.ToggleAllowTextChat" /> + <menu_item_check.on_check + function="ParticipantList.CheckItem" + parameter="is_allowed_text_chat" /> + <menu_item_check.on_enable + function="ParticipantList.EnableItem" + parameter="can_allow_text_chat" /> + </menu_item_check> +</context_menu> |