mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
2004-01-21 David Jee <djee@redhat.com>
* java/awt/Container.java
(LightweightDispatcher.handleEvent): Add an extra check to avoid
dispatching MOUSE_ENTERED event twice. Translate the point for
the mouse event target before dispatching the event.
From-SVN: r76278
This commit is contained in:
@@ -1633,8 +1633,18 @@ class LightweightDispatcher implements Serializable
|
||||
MouseEvent me = (MouseEvent) e;
|
||||
acquireComponentForMouseEvent (me);
|
||||
|
||||
if (mouseEventTarget != null)
|
||||
// Avoid dispatching an ENTERED event twice
|
||||
if (mouseEventTarget != null
|
||||
&& e.getID() != MouseEvent.MOUSE_ENTERED)
|
||||
{
|
||||
// Calculate point translation for the event target.
|
||||
// We use absolute location on screen rather than relative
|
||||
// location because the event target might be a nested child.
|
||||
Point parentLocation = nativeContainer.getLocationOnScreen();
|
||||
Point childLocation = mouseEventTarget.getLocationOnScreen();
|
||||
me.translatePoint(parentLocation.x - childLocation.x,
|
||||
parentLocation.y - childLocation.y);
|
||||
|
||||
Component oldSource = (Component) me.getSource ();
|
||||
me.setSource (mouseEventTarget);
|
||||
mouseEventTarget.dispatchEvent (me);
|
||||
|
||||
Reference in New Issue
Block a user