added transfer data object to mouseExited. added desktoppane to ui components references.

This commit is contained in:
magenoxx 2010-12-01 06:17:54 +00:00
parent 65e5c59004
commit 0721c843d2
7 changed files with 41 additions and 4 deletions

View file

@ -592,7 +592,10 @@ public class CardPanel extends MagePermanent implements MouseListener, MouseMoti
synchronized (this) {
if (popupShowing) {
popupShowing = false;
callback.mouseExited(e);
data.component = this;
data.card = this.gameCard;
data.popupText = popupText;
callback.mouseExited(e, data);
}
}
}