-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaddon-menubar-items.xml
More file actions
34 lines (31 loc) · 1.02 KB
/
addon-menubar-items.xml
File metadata and controls
34 lines (31 loc) · 1.02 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<PropertyList>
<meta>
<file-type type="string">FlightGear add-on menu bar items</file-type>
<format-version type="int">1</format-version>
</meta>
<menubar-items>
<menu>
<!-- submenu in 'AI' <label>AI</label>-->
<!-- separate main menu 'GS' <label>GS</label>-->
<label>GS</label>
<enabled type="bool">true</enabled>
<item>
<name>Main</name>
<enabled>true</enabled>
<binding>
<command>dialog-show</command>
<dialog-name>groundservices</dialog-name>
</binding>
</item>
<item>
<name>Map</name>
<enabled>true</enabled>
<binding>
<command>nasal</command>
<script>groundservices.openMap();</script>
</binding>
</item>
</menu>
</menubar-items>
</PropertyList>