mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fix for problem introduced in 321f5597b7
* Fixes a problem introduced in the JInternalFrame -> JLayeredPane change where the AbilityPicker wouldn't show up.
This commit is contained in:
parent
b33e03862a
commit
c22a8f717e
1 changed files with 1 additions and 1 deletions
|
@ -2187,7 +2187,7 @@ public final class GamePanel extends javax.swing.JPanel {
|
|||
|
||||
public void installComponents() {
|
||||
jLayeredPane.setOpaque(false);
|
||||
jLayeredPane.add(abilityPicker);
|
||||
jLayeredPane.add(abilityPicker, JLayeredPane.MODAL_LAYER);
|
||||
jLayeredPane.add(DialogManager.getManager(gameId), JLayeredPane.MODAL_LAYER, 0);
|
||||
abilityPicker.setVisible(false);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue