Cannot save an unnamed sprite

This commit is contained in:
Tim Young 2017-09-20 11:40:56 -05:00
parent dddab20eef
commit 201e42b370
1 changed files with 11 additions and 1 deletions

View File

@ -478,6 +478,11 @@ namespace SpriteLibrary
void ApplyChanges()
{
if (tbSpriteName.Text == "")
{
MessageBox.Show("You cannot save a sprite that has no name.");
return;
}
FormToSpriteInformation();
if (CurrentSIIndex > 0 && CurrentSIIndex < SpriteInformation.Count)
{
@ -498,7 +503,12 @@ namespace SpriteLibrary
/// <returns></returns>
bool PromptToApplyChangesAndContinue()
{
if(ValuesDifferFromData())
if (tbSpriteName.Text == "")
{
MessageBox.Show("You cannot save a sprite that has no name.");
return true;
}
if (ValuesDifferFromData())
{
DialogResult Answer = MessageBox.Show("You have unsaved Changes. Would you like to save them before proceeding?","Save?",MessageBoxButtons.YesNoCancel);
if (Answer == DialogResult.Yes) ApplyChanges();