NB 8.2 Issues
"bruehlicke" <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.openide.devel |
|---|---|
| Message-ID | <[email protected]> |
I checked my build.xml of my suite. In the target name ="build-brand" I do copy in copies of my icons. My notes tell me the reason was that in 6.5 the transparency was somehow lost. Anyhow, here what I do, not sure it will help you
<target name="build-brand" depends="-init">
.... do some other stuff ...
<!-- this is the copy part to replace bad image (removal of transparency by NetBeans) to good and transparent images -->
<copy todir="${basedir}/branding/core/core.jar/org/netbeans/core/startup/" overwrite="true">
<fileset dir="${resources.dir}">
<include name="frame.gif"/>
<include name="frame32.gif"/>
<include name="frame48.gif"/>
</fileset>
</copy>
...
</target>
The frame.gif is a 16x16 logo while the others are 32x32 and 48x48