Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Window Images in eclipse product not shown

I have defined all images from 16x16 px - 128x128 px (32 bit) in my eclipse product. They are being written into the plugin.xml of my UI

     <property
           name="windowImages"
           value="icons/16_32.gif,icons/32_32.gif,icons/48_32.gif,icons/64_32.gif,icons/128_32.gif">
     </property>

I now run the export wizard to create a executable. When i start the exe, the application shows a only a coloured red square icon both in explorer and alt+tab instead of my defined (and in build path exported) window images.

I have already tried using .png and .bmp instead, but it didn't work

Anyone already had the same issue?

like image 403
4Kings Avatar asked Sep 11 '25 06:09

4Kings


1 Answers

You have to make sure that the images are actually in the specified folder and that they are included in the bin.include path of the build.properties file.

like image 161
MatF Avatar answered Sep 13 '25 20:09

MatF