Index: Actions.java =================================================================== RCS file: /cvs/openide/src/org/openide/awt/Actions.java,v --- Actions.java 29 Sep 2004 12:41:08 -0000 1.102 +++ Actions.java 6 Oct 2004 15:04:17 -0000 @@ -647,6 +647,11 @@ protected void updateButtonIcon() { Object i = null; + Object obj = action.getValue("noIconInMenu"); + if (Boolean.TRUE.equals(obj)) { + button.setIcon(nonNullIcon(null)); + return; + } if (action instanceof SystemAction) { SystemAction sa = (SystemAction)action; i = sa.getIcon (useTextIcons ());