mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Downloading all token images even if Type 2 only is chosen.
This commit is contained in:
parent
fac4ff40fe
commit
7800f62b70
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue