mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +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;
|
||||||
|
@ -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