Rename tabs and include counts in them

This commit is contained in:
drdev
2014-06-07 05:54:24 +00:00
parent 3a2b62f572
commit bc8dc0f451
2 changed files with 3 additions and 3 deletions

View File

@@ -11,11 +11,11 @@ public class DraftDeckPage extends TabPage {
private final CardManager lstDeck = add(new CardManager(false));
protected DraftDeckPage(BoosterDraft draft0) {
super("Deck", FSkinImage.DECKLIST);
super("Main (0)", FSkinImage.DECKLIST);
draft = draft0;
lstDeck.setCaption("Deck");
lstDeck.setCaption("Main Deck");
lstDeck.setAlwaysNonUnique(true);
lstDeck.setup(ItemManagerConfig.DRAFT_POOL);
}

View File

@@ -11,7 +11,7 @@ public class DraftSideboardPage extends TabPage {
private final CardManager lstSideboard = add(new CardManager(false));
protected DraftSideboardPage(BoosterDraft draft0) {
super("Sideboard", FSkinImage.FLASHBACK);
super("Side (0)", FSkinImage.FLASHBACK);
draft = draft0;