stave off an error

This commit is contained in:
Tim Young 2017-09-20 12:42:58 -05:00
parent 08b7dbd9a1
commit 9754afd4cd
1 changed files with 8 additions and 0 deletions

View File

@ -741,5 +741,13 @@ namespace SpriteLibrary
Close();
}
}
private void btnCancel_Click(object sender, EventArgs e)
{
if (PromptToApplyChangesAndContinue())
{
Close();
}
}
}
}