diff options
author | kobewi <kobewi4e@gmail.com> | 2024-08-01 20:30:16 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-08-02 13:43:30 +0200 |
commit | e2c03469fb944d5d2489acc14714104ad3166bce (patch) | |
tree | 55aafef06034d99a28b01a7f621013a008c11cf5 /editor/plugins/tiles | |
parent | 3978628c6cc1227250fc6ed45c8d854d24c30c30 (diff) | |
download | redot-engine-e2c03469fb944d5d2489acc14714104ad3166bce.tar.gz |
Close expanded tile editor when inspector updates
Diffstat (limited to 'editor/plugins/tiles')
-rw-r--r-- | editor/plugins/tiles/tile_data_editors.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/plugins/tiles/tile_data_editors.cpp b/editor/plugins/tiles/tile_data_editors.cpp index f985bbc629..c97cd80136 100644 --- a/editor/plugins/tiles/tile_data_editors.cpp +++ b/editor/plugins/tiles/tile_data_editors.cpp @@ -859,6 +859,11 @@ void GenericTilePolygonEditor::_notification(int p_what) { button_expand->set_pressed_no_signal(false); } } break; + + case NOTIFICATION_READY: { + get_parent()->connect(SceneStringName(tree_exited), callable_mp(TileSetEditor::get_singleton(), &TileSetEditor::remove_expanded_editor)); + } break; + case NOTIFICATION_THEME_CHANGED: { button_expand->set_icon(get_editor_theme_icon(SNAME("DistractionFree"))); button_create->set_icon(get_editor_theme_icon(SNAME("CurveCreate"))); |