* Adventure cards - fixed wrong card name on the stack in image render mode;

This commit is contained in:
Oleg Agafonov 2020-01-02 05:55:44 +04:00
parent d860c026bd
commit 5e5b4713ea

View file

@ -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) {