1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[fix] [180923] Connection not decorated with live image descriptor if system type does not define own images

This commit is contained in:
Uwe Stieber 2007-04-18 08:44:13 +00:00
parent 9bc33d000e
commit dd3cb955c7

View file

@ -74,7 +74,6 @@ public class RSESystemTypeAdapter extends RSEAdapter {
*/
public ImageDescriptor getLiveImageDescriptor(Object object) {
ImageDescriptor img = getImage(object, IRSESystemTypeConstants.ICON_LIVE);
if (img==null) img = getImage(object, IRSESystemTypeConstants.ICON);
if (img==null) img = RSEUIPlugin.getDefault().getImageDescriptor(ISystemIconConstants.ICON_SYSTEM_CONNECTIONLIVE_ID);
return img;
}