mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-26 15:45:16 -05:00
Remove "Cancel" option where not necessary
This commit is contained in:
@@ -3118,7 +3118,7 @@ private void B_OpenPokedex_Click(object sender, EventArgs e)
|
||||
}
|
||||
private void B_OUTPasserby_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (DialogResult.Yes != Util.Prompt(MessageBoxButtons.YesNoCancel, "Export Passerby Info to Clipboard?"))
|
||||
if (DialogResult.Yes != Util.Prompt(MessageBoxButtons.YesNo, "Export Passerby Info to Clipboard?"))
|
||||
return;
|
||||
|
||||
string result = "PSS List" + Environment.NewLine;
|
||||
|
||||
@@ -299,7 +299,7 @@ private void resetFilters(object sender, EventArgs e)
|
||||
}
|
||||
private void generateDBReport(object sender, EventArgs e)
|
||||
{
|
||||
if (Util.Prompt(MessageBoxButtons.YesNoCancel, "Generate a Report on all data?", "This may take a while...")
|
||||
if (Util.Prompt(MessageBoxButtons.YesNo, "Generate a Report on all data?", "This may take a while...")
|
||||
!= DialogResult.Yes)
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user