Compare commits

...

1 Commits

Author SHA1 Message Date
jiezhang-tlnd
5398f1baae feat(TUP-32579)Update the icon on Modules View 2021-10-18 17:06:33 +08:00
3 changed files with 3 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 B

View File

@@ -109,6 +109,8 @@ public enum EImage implements IImage {
TABLE_VIEW("/icons/array_hot.png"), //$NON-NLS-1$
NO_TABLE_VIEW("/icons/array.png"), //$NON-NLS-1$
COMPOSITE_BACKGROUND("/icons/compositeBackground.jpg"), //$NON-NLS-1$
DOWNLOAD_LIB("/icons/download.png"), //$NON-NLS-1$
LOCK_ICON("/icons/lock.gif"), //$NON-NLS-1$
UNLOCK_ICON("/icons/unlock.gif"), //$NON-NLS-1$

View File

@@ -29,7 +29,7 @@ public class CheckThirdPartyLibrariesAction extends Action {
super();
this.setText(Messages.getString("Module.view.install.additional.packages.action.text"));
this.setDescription(Messages.getString("Module.view.install.additional.packages.action.description"));
this.setImageDescriptor(ImageProvider.getImageDesc(EImage.COMPACT_VIEW));
this.setImageDescriptor(ImageProvider.getImageDesc(EImage.DOWNLOAD_LIB));
this.parentView = parentView;
}