blob: ff89e20ea52da223c46dea1d82fe77a45aff3dcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<menu bottom="100" color="MenuDefaultBgColor" drop_shadow="true" height="101" left="100"
mouse_opaque="false" name="NearBy Chat Menu" opaque="true" width="128" visible="false">
<menu_item_call bottom_delta="-18" height="18" label="Show Nearby People..." left="0" mouse_opaque="true"
name="nearby_people" width="128">
<menu_item_call.on_click function="NearbyChat.Action" userdata="nearby_people" />
</menu_item_call>
<menu_item_separator />
<menu_item_check bottom_delta="-18" height="18" label="Show Blocked Text" left="0" mouse_opaque="true"
name="muted_text" width="128">
<menu_item_check.on_click function="NearbyChat.Action" userdata="muted_text" />
<menu_item_check.on_check function="NearbyChat.Check" userdata="muted_text"/>
</menu_item_check>
<menu_item_separator />
<menu_item_check bottom_delta="-18" height="18" label="Show Buddy Icons" left="0" mouse_opaque="true"
name="show_buddy_icons" width="128">
<menu_item_check.on_click function="NearbyChat.Action" userdata="show_buddy_icons" />
<menu_item_check.on_check function="NearbyChat.Check" userdata="show_buddy_icons"/>
</menu_item_check>
<menu_item_check bottom_delta="-18" height="18" label="Show Names" left="0" mouse_opaque="true"
name="show_names" width="128">
<menu_item_check.on_click function="NearbyChat.Action" userdata="show_names" />
<menu_item_check.on_check function="NearbyChat.Check" userdata="show_names"/>
</menu_item_check>
<menu_item_check bottom_delta="-18" height="18" label="Show Icons and Names" left="0" mouse_opaque="true"
name="show_icons_and_names" width="128">
<menu_item_check.on_click function="NearbyChat.Action" userdata="show_icons_and_names" />
<menu_item_check.on_check function="NearbyChat.Check" userdata="show_icons_and_names"/>
</menu_item_check>
<menu_item_separator />
<menu_item_call bottom_delta="-18" height="18" label="Font Size" left="0" mouse_opaque="true"
name="font_size" width="128">
<menu_item_call.on_click function="NearbyChat.Action" userdata="font_size" />
</menu_item_call>
</menu>
|