Merge pull request #74890 from smix8/gridmap_cell_size_disconnect_error_4.x

Fix GridMap signal "cell_size_changed" disconnect error
This commit is contained in:
Yuri Sizov 2023-03-21 12:04:03 +01:00 committed by GitHub
commit 58b803cb94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -913,7 +913,7 @@ void GridMapEditor::update_palette() {
}
void GridMapEditor::edit(GridMap *p_gridmap) {
if (node) {
if (node && node->is_connected("cell_size_changed", callable_mp(this, &GridMapEditor::_draw_grids))) {
node->disconnect("cell_size_changed", callable_mp(this, &GridMapEditor::_draw_grids));
}