Fix for stopping the Undo History being desynchronised from actual Undo queue.
This commit is contained in:
@ -463,6 +463,10 @@ bool UndoRedo::has_redo() const {
|
||||
return (current_action + 1) < actions.size();
|
||||
}
|
||||
|
||||
bool UndoRedo::is_merging() const {
|
||||
return merging;
|
||||
}
|
||||
|
||||
uint64_t UndoRedo::get_version() const {
|
||||
return version;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user