diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-23 12:42:52 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-23 12:42:52 +0200 |
| commit | fe45e4ec7c23c551ce8b0939b440c8822c766119 (patch) | |
| tree | e132a998e77738503b1942eb8b276c2067fa0f94 | |
| parent | 912366093d5b665bed1674c746cbec08bf8ddb0f (diff) | |
| parent | 8f26cdcaef0286eab736ec89de89ad2cc90fc366 (diff) | |
| download | redot-engine-fe45e4ec7c23c551ce8b0939b440c8822c766119.tar.gz | |
Merge pull request #83790 from OppositeNor/fix_tileset_out_of_screen
Fix TileSet painting options appear out of screen
| -rw-r--r-- | editor/plugins/tiles/tile_set_atlas_source_editor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/tiles/tile_set_atlas_source_editor.cpp b/editor/plugins/tiles/tile_set_atlas_source_editor.cpp index 4e7db8cb07..a3fc6aa5f7 100644 --- a/editor/plugins/tiles/tile_set_atlas_source_editor.cpp +++ b/editor/plugins/tiles/tile_set_atlas_source_editor.cpp @@ -836,6 +836,8 @@ void TileSetAtlasSourceEditor::_update_tile_data_editors() { item->set_custom_color(0, disabled_color); } + tile_data_editors_tree->update_minimum_size(); + #undef ADD_TILE_DATA_EDITOR_GROUP #undef ADD_TILE_DATA_EDITOR |
