Downloading all token images even if Type 2 only is chosen.

This commit is contained in:
magenoxx 2013-10-04 11:34:04 +04:00
parent fac4ff40fe
commit 7800f62b70

View file

@ -174,7 +174,7 @@ public class DownloadPictures extends DefaultBoundedRangeModel implements Runnab
if (checkBox.isSelected()) {
DownloadPictures.this.type2cards = new ArrayList<CardDownloadData>();
for (CardDownloadData data : DownloadPictures.this.cards) {
if (data.isType2()) {
if (data.isType2() || data.isToken()) {
DownloadPictures.this.type2cards.add(data);
}
}