summaryrefslogtreecommitdiffstats
path: root/editor/editor_undo_redo_manager.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2023-03-06 01:24:42 +0100
committerkobewi <kobewi4e@gmail.com>2023-03-06 10:40:45 +0100
commit38c50b4ed3c24a0bbe7327466a3069b1ac0df6a5 (patch)
tree078285de773b8a8c3879a1762c539b867175532a /editor/editor_undo_redo_manager.cpp
parentad9302bafceaf11fd4e23459395e87151092ed93 (diff)
downloadredot-engine-38c50b4ed3c24a0bbe7327466a3069b1ac0df6a5.tar.gz
Fix EditorUndoRedoManager's handling of MERGE_ENDS
Diffstat (limited to 'editor/editor_undo_redo_manager.cpp')
-rw-r--r--editor/editor_undo_redo_manager.cpp32
1 files changed, 26 insertions, 6 deletions
diff --git a/editor/editor_undo_redo_manager.cpp b/editor/editor_undo_redo_manager.cpp
index f65f905b25..facd1fd6d3 100644
--- a/editor/editor_undo_redo_manager.cpp
+++ b/editor/editor_undo_redo_manager.cpp
@@ -248,12 +248,32 @@ void EditorUndoRedoManager::commit_action(bool p_execute) {
}
if (!history.undo_stack.is_empty()) {
- const Action &prev_action = history.undo_stack.back()->get();
- if (pending_action.merge_mode != UndoRedo::MERGE_DISABLE && pending_action.merge_mode == prev_action.merge_mode && pending_action.action_name == prev_action.action_name) {
- // Discard action if it should be merged (UndoRedo handles merging internally).
- pending_action = Action();
- is_committing = false;
- return;
+ // Discard action if it should be merged (UndoRedo handles merging internally).
+ switch (pending_action.merge_mode) {
+ case UndoRedo::MERGE_DISABLE:
+ break; // Nothing to do here.
+ case UndoRedo::MERGE_ENDS: {
+ if (history.undo_stack.size() < 2) {
+ break;
+ }
+
+ const Action &prev_action = history.undo_stack.back()->get();
+ const Action &pre_prev_action = history.undo_stack.back()->prev()->get();
+ if (pending_action.merge_mode == prev_action.merge_mode && pending_action.merge_mode == pre_prev_action.merge_mode &&
+ pending_action.action_name == prev_action.action_name && pending_action.action_name == pre_prev_action.action_name) {
+ pending_action = Action();
+ is_committing = false;
+ return;
+ }
+ } break;
+ case UndoRedo::MERGE_ALL: {
+ const Action &prev_action = history.undo_stack.back()->get();
+ if (pending_action.merge_mode == prev_action.merge_mode && pending_action.action_name == prev_action.action_name) {
+ pending_action = Action();
+ is_committing = false;
+ return;
+ }
+ } break;
}
}