summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-07-29 23:39:19 +0200
committeremkael <emkael@tlen.pl>2017-07-29 23:39:19 +0200
commitdaeb4826264484305141f443f37df7e6ba9ac6e9 (patch)
tree059f48fbb91185c517c3bd05bf44b07be3de6627
parent861ccf77f4a419641bbfb2c667b9602bb8a1146c (diff)
Abort/Retry/Ignore dialog makes no sense if Rerty option is not handled, switching warning to Continue? Yes/No
-rw-r--r--Aktywator/Bws.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/Aktywator/Bws.cs b/Aktywator/Bws.cs
index 9d2ef81..4a7ec16 100644
--- a/Aktywator/Bws.cs
+++ b/Aktywator/Bws.cs
@@ -425,9 +425,10 @@ namespace Aktywator
if (ee.ErrorCode == -2147467259)
{
DialogResult dr = MessageBox.Show("W bws-ie jest para/team (" + ns + " albo " + ew
- + "), który nie istnieje w wybranym turnieju. Może to nie ten turniej?",
- "Zły turniej", MessageBoxButtons.AbortRetryIgnore, MessageBoxIcon.Warning);
- if (dr == DialogResult.Abort) return;
+ + "), który nie istnieje w wybranym turnieju. Może to nie ten turniej?"
+ + "\n\n" + "Kontynuować wczytywanie?",
+ "Zły turniej", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
+ if (dr == DialogResult.No) return;
}
else
{