blob: df2700c94c8a5e54709163c2dc49d2c719d608d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu
layout="topleft"
name="participant_manu_view">
<menu_item_call
label="Chat preferences..."
name="chat_preferences">
<on_click
function="IMFloaterContainer.Action"
parameter="chat_preferences" />
</menu_item_call>
<menu_item_check
label="Open conversation log"
name="Conversation"
visible="true">
<menu_item_check.on_check
function="Floater.Visible"
parameter="conversation" />
<menu_item_check.on_click
function="Floater.Toggle"
parameter="conversation" />
</menu_item_check>
</toggleable_menu>
|