*Fixed the mouse hover on the stack cardpanels.

*Fixed Simian Brawler
This commit is contained in:
Hellfish
2011-09-20 21:43:41 +00:00
parent e453d2612b
commit 470b64e453
2 changed files with 2 additions and 2 deletions

View File

@@ -733,7 +733,7 @@ public class GuiDisplay4 extends JFrame implements CardContainer, Display, NewCo
label = new JLabel((count++) + ". " + isOptional + stack.peekInstance(i).getStackDescription());
//update card detail
final CardPanel cardPanel = new CardPanel(stack.peekInstance().getSpellAbility().getSourceCard());
final CardPanel cardPanel = new CardPanel(stack.peekInstance(i).getSpellAbility().getSourceCard());
cardPanel.setLayout(new BorderLayout());
cardPanel.add(label);
cardPanel.addMouseMotionListener(new MouseMotionAdapter() {