forked from External/mage
...
This commit is contained in:
parent
de6a672d24
commit
14de10fd72
23 changed files with 498 additions and 501 deletions
|
|
@ -34,6 +34,7 @@
|
|||
|
||||
package mage.client.deckeditor;
|
||||
|
||||
import java.awt.Cursor;
|
||||
import mage.Constants.Zone;
|
||||
import mage.cards.Cards;
|
||||
import mage.cards.CardsImpl;
|
||||
|
|
@ -91,7 +92,13 @@ public class CardSelector extends javax.swing.JPanel {
|
|||
}
|
||||
|
||||
private void filterCards() {
|
||||
this.cardsList1.loadCards(new CardsView(cards.getCards(filter)), bigCard, null);
|
||||
try {
|
||||
setCursor(new Cursor(Cursor.WAIT_CURSOR));
|
||||
this.cardsList1.loadCards(new CardsView(cards.getCards(filter)), bigCard, null);
|
||||
}
|
||||
finally {
|
||||
setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
|
||||
}
|
||||
}
|
||||
|
||||
public CardsList getCardsList() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue