IDEMPIERE-5585 : Drill Assistant image not shown using theme with images (#1683)

https://idempiere.atlassian.net/browse/IDEMPIERE-5585
This commit is contained in:
Nicolas Micoud 2023-03-01 05:06:41 +01:00 committed by GitHub
parent 1e70b29ca2
commit e56131b5ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ public class WEditorPopupMenu extends Menupopup implements EventListener<Event>
/**
*
*/
private static final long serialVersionUID = -1632375949585292635L;
private static final long serialVersionUID = 6190279880520042885L;
public static final String EVENT_ATTRIBUTE = "EVENT";
public static final String ZOOM_EVENT = "ZOOM";
@ -291,7 +291,7 @@ public class WEditorPopupMenu extends Menupopup implements EventListener<Event>
if (ThemeManager.isUseFontIconForImage())
drillItem.setIconSclass("z-icon-Window");
else
drillItem.setImage(ThemeManager.getThemeResource("images/Window16.png"));
drillItem.setImage(ThemeManager.getThemeResource("images/mWindow.png"));
drillItem.addEventListener(Events.ON_CLICK, this);
this.appendChild(drillItem);
}