Bug fixed: Fixed "Frame modified" check. It leaves modified flag if user refused to save changes.

This commit is contained in:
Anton Mukhin
2025-07-08 10:56:17 +03:00
parent 30729aca2f
commit 686ff7b780
2 changed files with 2 additions and 2 deletions

View File

@@ -1195,8 +1195,8 @@ namespace McBitFont {
if (modified) {
if (MessageBox.Show("Current symbol is modified.\nDo you want to save the changes?", "Symbol was modified!", MessageBoxButtons.YesNo) == DialogResult.Yes) {
SaveFrame();
SetModified(false);
}
SetModified(false);
}
}

View File

@@ -6,4 +6,4 @@ V Show note field in Export comments
V When Rectangle selection tool is active hold Ctrl+Alt to temporary disable it to be able to draw
Bugs:
V Fixed "Frame modified" check. It leaves modified flag if user refused to save changes.