I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 163e748f authored by kytv's avatar kytv
Browse files

The XInfoPanel was shown twice on OSX because

<os family=unix> covered OSX as well. 

Instead, we'll show the panel for everything *EXCEPT*
Windows.
parent 8f84481d
No related branches found
No related tags found
No related merge requests found
......@@ -110,8 +110,14 @@
<panel classname="ShortcutPanel"><os family="windows" /></panel>
<!-- <panel classname="ProcessPanel"><os family="windows" /></panel> -->
<!-- unix|mac doesn't work, displays for windows too -->
<panel classname="XInfoPanel" ><os family="unix" /></panel>
<panel classname="XInfoPanel" ><os family="mac" /></panel>
<!-- Unfortunately unix is used for osx as well, so the XInfoPanel was shown *twice*
on OSX. Using the condition this way, the panel is shown on everything
*but* Windows.
-->
<panel classname="XInfoPanel" condition="!izpack.windowsinstall" />
<!--<panel classname="XInfoPanel" ><os family="unix" /></panel> -->
<!--<panel classname="XInfoPanel" ><os family="mac" /></panel> -->
<panel classname="InstallPanel"/>
<panel classname="SimpleFinishPanel"/>
</panels>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment