blob: 0e858ccf107f34dda72b12467fe1b86587d7cd84 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu
layout="topleft"
visible="false"
name="Gear Wearing">
<menu_item_call
label="Edit Outfit"
layout="topleft"
name="edit">
<on_click
function="Gear.Edit" />
</menu_item_call>
<menu_item_call
label="Take Off"
layout="topleft"
name="takeoff">
<on_click
function="Gear.TakeOff" />
<on_enable
function="Gear.OnEnable"
parameter="take_off" />
</menu_item_call>
<menu_item_call
label="Copy outfit list to clipboard"
layout="topleft"
name="copy">
<on_click
function="Gear.Copy" />
</menu_item_call>
</toggleable_menu>
|