blob: 50a1d99daf66f66e90b5bcf26e75b583e97e842e (
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
|
<?xml version="1.0" encoding="UTF-8" ?>
<Root xmlns="http://notenoughupdates.org/moulconfig" xmlns:firm="http://firmament.nea.moe/moulconfig"
>
<Center>
<Panel background="VANILLA" insets="10">
<Column>
<Row>
<firm:Button onClick="@back">
<Text text="←"/>
</firm:Button>
<Text text="Editing command macro"/>
</Row>
<Row>
<Text text="Command: /"/>
<Align horizontal="RIGHT">
<TextField value="@command" width="200"/>
</Align>
</Row>
<Row>
<Text text="Key Combo:"/>
<Align horizontal="RIGHT">
<firm:Button onClick="@addStep">
<Text text="+"/>
</firm:Button>
</Align>
</Row>
<Array data="@combo">
<Row>
<firm:Fixed width="160">
<Indirect value="@button"/>
</firm:Fixed>
<Align horizontal="RIGHT">
<firm:Button onClick="@delete">
<Text text="Delete"/>
</firm:Button>
</Align>
</Row>
</Array>
</Column>
</Panel>
</Center>
</Root>
|