diff --git a/GW Launcher/Forms/MainForm.cs b/GW Launcher/Forms/MainForm.cs index a59eae7..3023d66 100644 --- a/GW Launcher/Forms/MainForm.cs +++ b/GW Launcher/Forms/MainForm.cs @@ -210,6 +210,11 @@ private void ToolStripMenuItemAddNew_Click(object sender, EventArgs e) private void ToolStripMenuItemRemoveSelected_Click(object sender, EventArgs e) { + if (MessageBox.Show(@"Are you sure you want to remove the selected accounts?", @"Remove Accounts", + MessageBoxButtons.YesNo) != DialogResult.Yes) + { + return; + } Program.mutex.WaitOne(); var indices = from int indice in listViewAccounts.SelectedIndices orderby indice descending select indice; foreach (var indice in indices)