mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
options passed to JOptionPane were backwards
they're both -1, so this doesn't change anything
This commit is contained in:
parent
81de9eb5c8
commit
ff1b424caf
1 changed files with 1 additions and 3 deletions
|
@ -49,8 +49,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 static mage.remote.Connection.ProxyType.HTTP;
|
|
||||||
import static mage.remote.Connection.ProxyType.SOCKS;
|
|
||||||
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;
|
||||||
|
@ -221,7 +219,7 @@ public class DownloadPictures extends DefaultBoundedRangeModel implements Runnab
|
||||||
|
|
||||||
// JOptionPane
|
// JOptionPane
|
||||||
Object[] options = { startDownloadButton, closeButton = new JButton("Cancel") };
|
Object[] options = { startDownloadButton, closeButton = new JButton("Cancel") };
|
||||||
dlg = new JOptionPane(p0, JOptionPane.DEFAULT_OPTION, JOptionPane.PLAIN_MESSAGE, null, options, options[1]);
|
dlg = new JOptionPane(p0, JOptionPane.PLAIN_MESSAGE, JOptionPane.DEFAULT_OPTION, null, options, options[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean checkForNewCards(List<CardInfo> allCards) {
|
public static boolean checkForNewCards(List<CardInfo> allCards) {
|
||||||
|
|
Loading…
Reference in a new issue