Fix GridMap 'cell_size_changed' signal not disconnecting properly

Fixes that a GridMap node would not disconnect from the 'cell_size_changed' signal when the new selected node is another valid GridMap.
This commit is contained in:
smix8 2023-02-23 21:17:37 +01:00
parent e930c8d383
commit 624426f32e

View file

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