1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix the point size of the icons in the CView, they were too big.

This commit is contained in:
Alain Magloire 2004-03-08 01:33:14 +00:00
parent ec2b5bff2b
commit 64984809f6
2 changed files with 9 additions and 9 deletions

View file

@ -1,3 +1,10 @@
2004-03-07 Alain Magloire
Fix the point size of the icon in the CElementLabelProvider.
There were too big.
* src/org/eclipse/cdt/ui/CElementLabelProvider.java
2004-03-05 Alain Magloire
New icons.

View file

@ -201,15 +201,8 @@ public class CElementLabelProvider extends LabelProvider {
for (int i= 0; i < fAdornmentProviders.length; i++) {
imageFlags |= fAdornmentProviders[i].computeAdornmentFlags(element);
}
}
if(element instanceof ICElement) {
Image result= fImageLabelProvider.getImageLabel(element, imageFlags);
if (result != null) {
return result;
}
}
return fWorkbenchLabelProvider.getImage(element);
}
return fImageLabelProvider.getImageLabel(element, imageFlags);
}
/**