IDEMPIERE-6307: MenuSearch doesn't display tooltip (#2545)

This commit is contained in:
Nicolas Micoud 2024-11-19 09:21:37 +01:00 committed by Carlos Ruiz
parent c191234b53
commit 25ccc6951b
1 changed files with 1 additions and 1 deletions

View File

@ -758,7 +758,7 @@ public class MenuSearchController implements EventListener<Event>{
}
item.appendChild(cell);
cell.setTooltip(data.getDescription());
cell.setTooltiptext(data.getDescription());
item.setValue(data);
item.addEventListener(Events.ON_CLICK, MenuSearchController.this);