Update Icons

This commit is contained in:
Anthony Calosa
2020-02-25 18:43:57 +08:00
parent 01a17b4b2c
commit 40478a45ac
18 changed files with 136 additions and 70 deletions

View File

@@ -82,7 +82,7 @@ public class DeckStarRenderer extends ItemCellRenderer {
}
else if (DeckPreferences.getPrefs(deck).getStarCount() == 0) {
this.setToolTipText("Click to add " + deck.getName() + " to your favorites");
skinImage = FSkin.getImage(FSkinProp.IMG_STAR_OUTINE);
skinImage = FSkin.getImage(FSkinProp.IMG_STAR_OUTLINE);
}
else { //TODO: consider supporting more than 1 star
this.setToolTipText("Click to remove " + deck.getName() + " from your favorites");

View File

@@ -83,7 +83,7 @@ public class StarRenderer extends ItemCellRenderer {
}
else if (CardPreferences.getPrefs(card).getStarCount() == 0) {
this.setToolTipText("Click to add " + card.getName() + " to your favorites");
skinImage = FSkin.getImage(FSkinProp.IMG_STAR_OUTINE);
skinImage = FSkin.getImage(FSkinProp.IMG_STAR_OUTLINE);
}
else { //TODO: consider supporting more than 1 star
this.setToolTipText("Click to remove " + card.getName() + " from your favorites");