mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* Fixed bug in download images logic (fixes #3756).
This commit is contained in:
parent
052fbb3ab6
commit
5cca05dd23
1 changed files with 2 additions and 3 deletions
|
@ -26,7 +26,6 @@ import mage.client.constants.Constants;
|
||||||
import mage.client.dialog.PreferencesDialog;
|
import mage.client.dialog.PreferencesDialog;
|
||||||
import mage.client.util.sets.ConstructedFormats;
|
import mage.client.util.sets.ConstructedFormats;
|
||||||
import mage.remote.Connection;
|
import mage.remote.Connection;
|
||||||
import mage.util.RandomUtil;
|
|
||||||
import net.java.truevfs.access.TFile;
|
import net.java.truevfs.access.TFile;
|
||||||
import net.java.truevfs.access.TFileOutputStream;
|
import net.java.truevfs.access.TFileOutputStream;
|
||||||
import net.java.truevfs.access.TVFS;
|
import net.java.truevfs.access.TVFS;
|
||||||
|
@ -107,7 +106,7 @@ public class DownloadPictures extends DefaultBoundedRangeModel implements Runnab
|
||||||
p0.add(jLabel1);
|
p0.add(jLabel1);
|
||||||
p0.add(Box.createVerticalStrut(5));
|
p0.add(Box.createVerticalStrut(5));
|
||||||
ComboBoxModel jComboBox1Model = new DefaultComboBoxModel(new String[]{
|
ComboBoxModel jComboBox1Model = new DefaultComboBoxModel(new String[]{
|
||||||
// "magiccards.info",
|
// "magiccards.info",
|
||||||
"wizards.com",
|
"wizards.com",
|
||||||
"mythicspoiler.com",
|
"mythicspoiler.com",
|
||||||
"tokens.mtg.onl", //"mtgimage.com (HQ)",
|
"tokens.mtg.onl", //"mtgimage.com (HQ)",
|
||||||
|
@ -127,7 +126,7 @@ public class DownloadPictures extends DefaultBoundedRangeModel implements Runnab
|
||||||
jComboBox1.setAlignmentX(Component.LEFT_ALIGNMENT);
|
jComboBox1.setAlignmentX(Component.LEFT_ALIGNMENT);
|
||||||
jComboBox1.addActionListener(e -> {
|
jComboBox1.addActionListener(e -> {
|
||||||
JComboBox cb = (JComboBox) e.getSource();
|
JComboBox cb = (JComboBox) e.getSource();
|
||||||
switch (cb.getSelectedIndex()) {
|
switch (cb.getSelectedIndex() + 1) {
|
||||||
case 0:
|
case 0:
|
||||||
cardImageSource = MagicCardsImageSource.instance;
|
cardImageSource = MagicCardsImageSource.instance;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue