diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-04-10 11:47:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 11:47:19 +0200 |
commit | 95db658672583eb620aa264055115481925dfc3c (patch) | |
tree | 37f07c92da528f1bc816650205adced976b840a6 /core/undo_redo.cpp | |
parent | 9ab08f06c89cb4ace09aaad1e3f33588835cf631 (diff) | |
parent | 406c2790e3a899b7e2645fb08edf069236fe0e79 (diff) |
Merge pull request #37699 from lupoDharkael/committing-typo
Replace is_commiting_action with is_committing_action
Diffstat (limited to 'core/undo_redo.cpp')
-rw-r--r-- | core/undo_redo.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/undo_redo.cpp b/core/undo_redo.cpp index 8bd5a4915d..62ad3e9f98 100644 --- a/core/undo_redo.cpp +++ b/core/undo_redo.cpp @@ -511,8 +511,7 @@ void UndoRedo::_bind_methods() { ClassDB::bind_method(D_METHOD("create_action", "name", "merge_mode"), &UndoRedo::create_action, DEFVAL(MERGE_DISABLE)); ClassDB::bind_method(D_METHOD("commit_action"), &UndoRedo::commit_action); - // FIXME: Typo in "commiting", fix in 4.0 when breaking compat. - ClassDB::bind_method(D_METHOD("is_commiting_action"), &UndoRedo::is_committing_action); + ClassDB::bind_method(D_METHOD("is_committing_action"), &UndoRedo::is_committing_action); { MethodInfo mi; |