Skip to content

Commit

Permalink
Fix changes not saving when prompted.
Browse files Browse the repository at this point in the history
  • Loading branch information
blueskythlikesclouds committed Aug 21, 2020
1 parent a7c9421 commit db8fed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MikuMikuModel/GUI/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ private bool AskForSavingChanges()
if ( result == DialogResult.Cancel )
return true;

if ( result == DialogResult.OK )
if ( result == DialogResult.Yes )
SaveFile();

return false;
Expand Down

0 comments on commit db8fed4

Please sign in to comment.