79296934

Date: 2024-12-20 10:42:41
Score: 1
Natty:
Report link

The problem was in fact the position of the tooltip set in the function

tooltip.setShift(new Point(-5, -5));

with those parameters the tooltip will pop on the mouse, that will create a collision with the mousehover listener because the the parent's widget (TreeViewer) is not under the mouse.

I change the setShift to this :

tooltip.setShift(new Point(-5, 15));
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Etienne