From 68b8a87a40925ad34deb2c4c60f10cd965a5966e Mon Sep 17 00:00:00 2001 From: drdev Date: Mon, 6 Apr 2015 19:06:50 +0000 Subject: [PATCH] Fix icon and button caption for new alert --- forge-gui-mobile/src/forge/deck/FDeckImportDialog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-gui-mobile/src/forge/deck/FDeckImportDialog.java b/forge-gui-mobile/src/forge/deck/FDeckImportDialog.java index 9e5469abb1e..13784df8d8c 100644 --- a/forge-gui-mobile/src/forge/deck/FDeckImportDialog.java +++ b/forge-gui-mobile/src/forge/deck/FDeckImportDialog.java @@ -74,7 +74,7 @@ public class FDeckImportDialog extends FDialog { } } if (sb.length() > 0) { - if (!SOptionPane.showConfirmDialog("The following cards cannot be imported due to misspelling, set restrictions, or not being in Forge yet:\n\n" + sb.toString(), "Import remaining cards?", "OK", "Cancel")) { + if (SOptionPane.showOptionDialog("The following cards cannot be imported due to misspelling, set restrictions, or not being in Forge yet:\n\n" + sb.toString(), "Import remaining cards?", SOptionPane.INFORMATION_ICON, new String[] { "Import", "Cancel" }) == 1) { return; } }