diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-09-20 17:52:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-20 17:52:39 +0200 |
commit | a34b77e271da5f3d550acfac1e5557f2467c6266 (patch) | |
tree | bbe4842e7d7d7445579572a040b2e2348d548082 | |
parent | 5ea6c9fd02b587c7ee238224279ee3880e558c78 (diff) | |
parent | 6290616c0affc3fb37ac3c9baeb58406ce1e130c (diff) |
Merge pull request #32095 from KoBeWi/silly_user
Properly remove GridMap node from editor on undo
-rw-r--r-- | modules/gridmap/grid_map_editor_plugin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/gridmap/grid_map_editor_plugin.cpp b/modules/gridmap/grid_map_editor_plugin.cpp index 97b2e4f138..7e2986ca85 100644 --- a/modules/gridmap/grid_map_editor_plugin.cpp +++ b/modules/gridmap/grid_map_editor_plugin.cpp @@ -1075,6 +1075,7 @@ void GridMapEditor::_notification(int p_what) { switch (p_what) { case NOTIFICATION_ENTER_TREE: { + get_tree()->connect("node_removed", this, "_node_removed"); mesh_library_palette->connect("item_selected", this, "_item_selected_cbk"); for (int i = 0; i < 3; i++) { @@ -1091,6 +1092,7 @@ void GridMapEditor::_notification(int p_what) { } break; case NOTIFICATION_EXIT_TREE: { + get_tree()->disconnect("node_removed", this, "_node_removed"); _clear_clipboard_data(); for (int i = 0; i < 3; i++) { @@ -1204,6 +1206,7 @@ void GridMapEditor::_bind_methods() { ClassDB::bind_method("_floor_changed", &GridMapEditor::_floor_changed); ClassDB::bind_method("_floor_mouse_exited", &GridMapEditor::_floor_mouse_exited); ClassDB::bind_method("_set_selection", &GridMapEditor::_set_selection); + ClassDB::bind_method("_node_removed", &GridMapEditor::_node_removed); ClassDB::bind_method(D_METHOD("_set_display_mode", "mode"), &GridMapEditor::_set_display_mode); } |