re-ordered layout of hand, graveyard and exile tab buttons to be more consistent and thus clearer.

master
Lodici 2013-12-17 13:19:51 +00:00
parent 69a5cb6b70
commit a44e6493b6
1 changed files with 2 additions and 2 deletions

View File

@ -34,10 +34,10 @@ public class ImageHandGraveyardExileViewer extends JPanel implements ChangeListe
tabSelector=new TabSelector(this,true);
tabSelector.addTab(theme.getIcon(Theme.ICON_SMALL_HAND),"Hand : "+playerName);
tabSelector.addTab(theme.getIcon(Theme.ICON_SMALL_GRAVEYARD),"Graveyard : "+playerName);
tabSelector.addTab(theme.getIcon(Theme.ICON_SMALL_GRAVEYARD),"Graveyard : "+opponentName);
tabSelector.addTab(theme.getIcon(Theme.ICON_SMALL_EXILE),"Exile : "+playerName);
tabSelector.addTab(theme.getIcon(Theme.ICON_SMALL_HAND),"Hand : "+opponentName);
tabSelector.addTab(theme.getIcon(Theme.ICON_SMALL_GRAVEYARD),"Graveyard : "+opponentName);
tabSelector.addTab(theme.getIcon(Theme.ICON_SMALL_EXILE),"Exile : "+opponentName);
tabSelector.addTab(theme.getIcon(Theme.ICON_SMALL_HAND),"Other : "+playerName);
add(tabSelector,BorderLayout.WEST);
cardListViewer=new ImageCardListViewer(controller);