blob: f8801f9c89ce07d6b5bd87ae3869a729d096564b (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<panel
border="true"
follows="all"
height="408"
label="Controls"
layout="topleft"
left="102"
name="controls"
top="1"
width="517">
<combo_box
follows="top|left"
layout="topleft"
top="6"
left="10"
height="23"
width="232"
name="key_mode">
<combo_box.item
label="When in third person"
name="third_person"
value="1"/>
<combo_box.item
label="When in first person mode (Mouselook)"
name="first_person"
value="0"/>
<combo_box.item
label="When editing avatar"
name="edit_avatar"
value="2"/>
<combo_box.item
label="When sitting"
name="sitting"
value="3"/>
</combo_box>
<button
follows="top|left"
layout="topleft"
top="6"
right="-10"
height="23"
width="140"
label="Restore Defaults"
tool_tip="Restores default values for all control modes."
name="restore_defaults"/>
<scroll_list
draw_heading="true"
follows="all"
layout="topleft"
column_padding="0"
selection_type="header"
top="31"
left="3"
bottom="-3"
right="-3"
can_sort="false"
multi_select="false"
name="controls_list"
fg_disable_color="ScrollUnselectedColor"/>
</panel>
|