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:
parent
ec2b5bff2b
commit
64984809f6
2 changed files with 9 additions and 9 deletions
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue