add default image descriptor to fix missing icon on eclipse 4.18

This commit is contained in:
Martin Lippert
2020-12-13 17:58:17 +01:00
parent a3090ab07f
commit c41db7c716

View File

@@ -26,6 +26,7 @@ public class RemoveConsoleAction extends Action {
public RemoveConsoleAction(IConsoleView consoleView, IConsoleManager consoleManager) {
this.consoleView = consoleView;
this.consoleManager = consoleManager;
setImageDescriptor(DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_REMOVE));
setDisabledImageDescriptor(DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_DLCL_REMOVE));
setHoverImageDescriptor(DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_REMOVE));
setEnabled(true);