forked from c9/cloud9
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.xml
More file actions
33 lines (32 loc) · 1.21 KB
/
Copy pathsettings.xml
File metadata and controls
33 lines (32 loc) · 1.21 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
<a:application xmlns:a="http://ajax.org/2005/aml">
<a:skin id="prefs"
src = "{require('ext/settings/settings').skin}"
media-path = "/static/ext/settings/images/" />
<a:window id="winSettings"
skin = "fm-window"
class = "unselectable"
title = "Preferences"
visible = "true"
flex = "1"
modal = "false"
model = "{require('ext/settings/settings').model}">
<a:hbox
anchors = "0 0 0 0"
overflow = "hidden">
<a:bar id="barSettings" skinset="prefs" skin="bar-preferences" flex="1">
<div class="header">
<span></span><div>General</div>
</div>
<a:checkbox class="underlined first" value="[general/@openfiles]">On Load Restore Previous State</a:checkbox>
<a:checkbox value="[general/@saveallbeforerun]">Save all files before Running</a:checkbox>
</a:bar>
<a:scrollbar
for = "barSettings"
margin = "2"
skin = "sbios"
width = "7"
overflow = "auto"
/>
</a:hbox>
</a:window>
</a:application>