79487449

Date: 2025-03-05 19:08:02
Score: 0.5
Natty:
Report link

have you tried to dispatch the event inside the line panel?

linePanel.addMouseMotionListener(new MouseMotionAdapter() {
@Override
public void mouseMoved(MouseEvent e) {
    
    buttonPanel.dispatchEvent(SwingUtilities.convertMouseEvent(linePanel, e, buttonPanel));
}

});

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Daniel Cunha