Added project reset call after SaveAs function completes to ensure that project shows no changes before removing * from window caption.

This commit is contained in:
mjbudd77 2021-12-30 21:17:24 -05:00
parent dbcc485e24
commit 8ee625c473
1 changed files with 1 additions and 0 deletions

View File

@ -1681,6 +1681,7 @@ bool TasEditorWindow::saveProjectAs(bool save_compact)
}
addRecentProject( filename.toStdString().c_str() );
// saved successfully - remove * mark from caption
project.reset();
updateCaption();
return true;
}