Fix undo/redo while checking link integrity

This commit is contained in:
Stefan Tröger
2017-02-11 13:55:20 +01:00
committed by wmayer
parent 9fbf118cdd
commit eb601df236
7 changed files with 46 additions and 8 deletions

View File

@@ -863,6 +863,12 @@ bool Document::redo(void)
return false;
}
bool Document::performsTransactionOperation() {
return d->undoing || d->rollback;
}
std::vector<std::string> Document::getAvailableUndoNames() const
{
std::vector<std::string> vList;