diff options
author | Gilles Roudière <gilles.roudiere@gmail.com> | 2021-10-11 14:09:44 +0200 |
---|---|---|
committer | Gilles Roudière <gilles.roudiere@gmail.com> | 2021-10-11 14:09:44 +0200 |
commit | ae3ce8beaf62597c69751001cd2dc262f0028aed (patch) | |
tree | 45d7c54b1a2dce370a48a414b2385033aa82636f /editor/plugins/tiles | |
parent | 0a8b35b7c9b62ca074cccd930015fe6c55ae9688 (diff) |
Fix TileSet selection not updating when selecting on TileMap
Diffstat (limited to 'editor/plugins/tiles')
-rw-r--r-- | editor/plugins/tiles/tile_map_editor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/tiles/tile_map_editor.cpp b/editor/plugins/tiles/tile_map_editor.cpp index cc5ff90541..28b45343c7 100644 --- a/editor/plugins/tiles/tile_map_editor.cpp +++ b/editor/plugins/tiles/tile_map_editor.cpp @@ -1423,6 +1423,8 @@ void TileMapEditorTilesPlugin::_update_tileset_selection_from_selection_pattern( } } _update_bottom_panel(); + tile_atlas_control->update(); + alternative_tiles_control->update(); } void TileMapEditorTilesPlugin::_tile_atlas_control_draw() { |