mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
* Adventure cards - fixed wrong card name on the stack in image render mode;
This commit is contained in:
parent
d860c026bd
commit
5e5b4713ea
1 changed files with 1 additions and 1 deletions
|
@ -362,7 +362,7 @@ public class CardPanelComponentImpl extends CardPanel {
|
|||
}
|
||||
|
||||
private void setTitle(CardView card) {
|
||||
titleText.setText(!displayTitleAnyway && hasImage ? "" : card.getName());
|
||||
titleText.setText(!displayTitleAnyway && hasImage ? "" : card.getDisplayName());
|
||||
}
|
||||
|
||||
private void setImage(BufferedImage srcImage) {
|
||||
|
|
Loading…
Reference in a new issue