summaryrefslogtreecommitdiffstats
path: root/editor/editor_node.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-09-17 21:03:04 +0200
committerkobewi <kobewi4e@gmail.com>2022-09-17 21:03:04 +0200
commit6cec00b0994ad16160f4909189965933c0e1b51f (patch)
treea0cc5616c81006afd0fcc5a964097d82ba3ef6b5 /editor/editor_node.cpp
parent57bdddce02370af3d13e6edc583afdc17264147d (diff)
downloadredot-engine-6cec00b0994ad16160f4909189965933c0e1b51f.tar.gz
Remove unused _clear_undo_history method
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r--editor/editor_node.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 8eaddcb7e1..893fc6f8f3 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -3668,10 +3668,6 @@ bool EditorNode::is_changing_scene() const {
return changing_scene;
}
-void EditorNode::_clear_undo_history() {
- get_undo_redo()->clear_history(false);
-}
-
void EditorNode::set_current_scene(int p_idx) {
// Save the folding in case the scene gets reloaded.
if (editor_data.get_scene_path(p_idx) != "" && editor_data.get_edited_scene_root(p_idx)) {
@@ -5981,8 +5977,6 @@ void EditorNode::_bind_methods() {
ClassDB::bind_method("_set_main_scene_state", &EditorNode::_set_main_scene_state);
ClassDB::bind_method("_update_recent_scenes", &EditorNode::_update_recent_scenes);
- ClassDB::bind_method("_clear_undo_history", &EditorNode::_clear_undo_history);
-
ClassDB::bind_method("edit_item_resource", &EditorNode::edit_item_resource);
ClassDB::bind_method(D_METHOD("get_gui_base"), &EditorNode::get_gui_base);