Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing crash bug related to Flash CS5 xul bug #15

Open
wants to merge 1 commit into
base: 1.02
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions core/ui/config.xul
Original file line number Diff line number Diff line change
Expand Up @@ -62,26 +62,27 @@
<columns id="columns">
<column flex="1"/>
<column flex="2"/>
<column flex="3"/>
</columns>
<rows id="controls">
<row>
<label value="Status: " width="80"/>
<label value="Status:" />
<hbox>
<menulist id="enabled" flex="1" oncreate="getEnabled()">
<menulist id="enabled" oncreate="getEnabled()">
<menupop id="menupop">
<menuitem label="Enabled" value="1" />
<menuitem label="Disabled" value="0" />
</menupop>
</menulist>
<button label="Uninstall" width="63" id="uninstall" oncommand="uninstall()" oncreate="getInstalled()" />
<label value=" " width="175"/>

</hbox>
<button label="Uninstall" width="63" id="uninstall" oncommand="uninstall()" oncreate="getInstalled()" />
</row>
<row>
<label value="Installation folder: " width="100"/>
<hbox>
<textbox id="installfolder" value="" width="300" oncreate="setInstallFolder(xjsfl.uri)" />
<button label="Change" width="63" oncommand="updateInstallFolder()" />
</hbox>
<label value="Install path:" />
<textbox id="installfolder" value="" width="270" oncreate="setInstallFolder(xjsfl.uri)" />
<button label="Change" width="63" oncommand="updateInstallFolder()" />
</row>
</rows>
</grid>
Expand Down