|
|
|
|
|
|
|
|
|
|
Re: Missing project explorer icons after update of platform (git projects) [message #1774783 is a reply to message #1773323] |
Thu, 19 October 2017 10:36  |
Eclipse User |
|
|
|
Good news I found this thread: https://www.eclipse.org/forums/index.php/t/1079044/
And started looking at our ApplicationWorkbenchAdvisor, and similar to their problem our code had some of that aswell
Old code
declareWorkbenchImage(configurer, ideBundle, IDE.SharedImages.IMG_OBJ_PROJECT, PATH_OBJECT + "prj_obj.gif", true);
declareWorkbenchImage(configurer, ideBundle, IDE.SharedImages.IMG_OBJ_PROJECT_CLOSED, PATH_OBJECT + "cprj_obj.gif", true);
New Code
declareWorkbenchImage(configurer, ideBundle, IDE.SharedImages.IMG_OBJ_PROJECT, PATH_OBJECT + "prj_obj.png", true);
declareWorkbenchImage(configurer, ideBundle, IDE.SharedImages.IMG_OBJ_PROJECT_CLOSED, PATH_OBJECT + "cprj_obj.png", true);
So the only change is that the picture now is png and not gif.
I guess the bundle at some point changed from being gif to only being png.
The bundle we use are eclipse.ui.ide
Thanks to everybody coming with inputs
|
|
|
Powered by
FUDForum. Page generated in 0.14475 seconds