Merge pull request #84795 from TheSofox/prevent-property-change-output-spam

Reduced output spam from rapid property changes
This commit is contained in:
Rémi Verschelde 2023-11-12 23:00:31 +01:00
commit 404c995ab3
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 3 additions and 1 deletions

View File

@ -301,6 +301,8 @@ void UndoRedo::commit_action(bool p_execute) {
return; //still nested
}
bool add_message = !merging;
if (merging) {
version--;
merging = false;
@ -314,7 +316,7 @@ void UndoRedo::commit_action(bool p_execute) {
_redo(p_execute); // perform action
committing--;
if (callback && actions.size() > 0) {
if (add_message && callback && actions.size() > 0) {
callback(callback_ud, actions[actions.size() - 1].name);
}
}