Исправлены ошибки

This commit is contained in:
Данияр Аглиуллов 2022-10-07 18:44:20 +04:00
parent e31712ac6a
commit 7e5c89d036

View File

@ -129,15 +129,8 @@
/// <param name="e"></param> /// <param name="e"></param>
private void ButtonRemoveAirplane_Click(object sender, EventArgs e) private void ButtonRemoveAirplane_Click(object sender, EventArgs e)
{ {
if (listBoxMaps.SelectedIndex == -1) if (listBoxMaps.SelectedIndex == -1 || string.IsNullOrEmpty(maskedTextBoxPosition.Text) ||
{ MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
return;
}
if (string.IsNullOrEmpty(maskedTextBoxPosition.Text))
{
return;
}
if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
{ {
return; return;
} }