1
0
Fork 0

Allow coalescing undo over autosaves

This commit is contained in:
Thomas Goyne 2015-10-03 18:18:59 -07:00
parent 52dbb482af
commit c8d02de3db
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ void SubsController::OnCommit(AssFileCommit c) {
commit_id = next_commit_id++;
// Allow coalescing only if it's the last change and the file has not been
// saved since the last change
if (commit_id == *c.commit_id+1 && redo_stack.empty() && saved_commit_id+1 != commit_id && autosaved_commit_id+1 != commit_id) {
if (commit_id == *c.commit_id+1 && redo_stack.empty() && saved_commit_id+1 != commit_id) {
// If only one line changed just modify it instead of copying the file
if (c.single_line && c.single_line->Group() == AssEntryGroup::DIALOGUE) {
for (auto& diag : undo_stack.back().events) {