mirror of
https://github.com/correl/mage.git
synced 2025-03-07 20:53:18 -10:00
Fixed Issue#107: Text of tooltip is shown behind the exile windows.
This commit is contained in:
parent
082a468f1e
commit
1de8321f44
1 changed files with 1 additions and 1 deletions
|
@ -497,7 +497,7 @@ public class GamePanel extends javax.swing.JPanel {
|
|||
if (!exiles.containsKey(exile.getId())) {
|
||||
ExileZoneDialog newExile = new ExileZoneDialog();
|
||||
exiles.put(exile.getId(), newExile);
|
||||
MageFrame.getDesktop().add(newExile, JLayeredPane.POPUP_LAYER);
|
||||
MageFrame.getDesktop().add(newExile, JLayeredPane.MODAL_LAYER);
|
||||
newExile.show();
|
||||
}
|
||||
exiles.get(exile.getId()).loadCards(exile, bigCard, gameId);
|
||||
|
|
Loading…
Add table
Reference in a new issue