mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
fix Flashback displaying the incorrect icon.
This commit is contained in:
@@ -288,7 +288,7 @@ public class ViewField extends FRoundedPanel {
|
||||
ViewField.this.lblExile.setToolTipText("Exiled cards");
|
||||
poolArea.add(ViewField.this.lblExile, constraintsR);
|
||||
|
||||
ViewField.this.lblFlashback = new DetailLabel(FSkin.SkinProp.ICON_ZONE_EXILE, "99");
|
||||
ViewField.this.lblFlashback = new DetailLabel(FSkin.SkinProp.ICON_ZONE_FLASHBACK, "99");
|
||||
ViewField.this.lblFlashback.setToolTipText("Flashback cards");
|
||||
poolArea.add(ViewField.this.lblFlashback, constraintsL);
|
||||
|
||||
|
||||
@@ -278,11 +278,11 @@ public class FSkin {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
this.setIconAndIncrement(SkinProp.ICON_ZONE_HAND, 280, 40, 40, 40);
|
||||
this.setIconAndIncrement(SkinProp.ICON_ZONE_LIBRARY, 280, 0, 40, 40);
|
||||
this.setIconAndIncrement(SkinProp.ICON_ZONE_HAND, 280, 40, 40, 40);
|
||||
this.setIconAndIncrement(SkinProp.ICON_ZONE_FLASHBACK, 280, 80, 40, 40);
|
||||
this.setIconAndIncrement(SkinProp.ICON_ZONE_GRAVEYARD, 320, 0, 40, 40);
|
||||
this.setIconAndIncrement(SkinProp.ICON_ZONE_EXILE, 320, 40, 40, 40);
|
||||
this.setIconAndIncrement(SkinProp.ICON_ZONE_FLASHBACK, 280, 80, 40, 40);
|
||||
this.setIconAndIncrement(SkinProp.ICON_ZONE_POISON, 320, 80, 40, 40);
|
||||
|
||||
this.setIconAndIncrement(SkinProp.ICON_MANA_BLACK, 360, 160, 40, 40);
|
||||
|
||||
Reference in New Issue
Block a user