You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-19 14:31:59 +00:00
Emit history_changed on merged UndoRedo actions
(cherry picked from commit b6bb0d505d)
This commit is contained in:
@@ -264,6 +264,7 @@ void EditorUndoRedoManager::commit_action(bool p_execute) {
|
||||
pending_action.action_name == prev_action.action_name && pending_action.action_name == pre_prev_action.action_name) {
|
||||
pending_action = Action();
|
||||
is_committing = false;
|
||||
emit_signal(SNAME("history_changed"));
|
||||
return;
|
||||
}
|
||||
} break;
|
||||
@@ -272,6 +273,7 @@ void EditorUndoRedoManager::commit_action(bool p_execute) {
|
||||
if (pending_action.merge_mode == prev_action.merge_mode && pending_action.action_name == prev_action.action_name) {
|
||||
pending_action = Action();
|
||||
is_committing = false;
|
||||
emit_signal(SNAME("history_changed"));
|
||||
return;
|
||||
}
|
||||
} break;
|
||||
|
||||
Reference in New Issue
Block a user