diff options
author | Sébastien Dunne Fulmer <createdbyseb@gmail.com> | 2024-08-29 12:17:38 +0100 |
---|---|---|
committer | Sébastien Dunne Fulmer <createdbyseb@gmail.com> | 2024-08-29 12:17:38 +0100 |
commit | aaa157f929a59ed6e22b4e628fb135c414eecbe2 (patch) | |
tree | 3302859a445350628db866c4bcebf7b2043e96bb /editor/plugins/tiles | |
parent | fd7239cfab228c50777cd54a8bf6eb279a02ef81 (diff) | |
download | redot-engine-aaa157f929a59ed6e22b4e628fb135c414eecbe2.tar.gz |
Fix TileSet Scattering setting vanishing when changing tools
Diffstat (limited to 'editor/plugins/tiles')
-rw-r--r-- | editor/plugins/tiles/tile_map_layer_editor.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/editor/plugins/tiles/tile_map_layer_editor.cpp b/editor/plugins/tiles/tile_map_layer_editor.cpp index 7e7d7e3291..7e6746dd3c 100644 --- a/editor/plugins/tiles/tile_map_layer_editor.cpp +++ b/editor/plugins/tiles/tile_map_layer_editor.cpp @@ -86,8 +86,7 @@ void TileMapLayerEditorTilesPlugin::_update_toolbar() { transform_toolbar->show(); tools_settings_vsep_2->show(); random_tile_toggle->show(); - scatter_label->show(); - scatter_spinbox->show(); + scatter_controls_container->set_visible(random_tile_toggle->is_pressed()); } else { tools_settings_vsep->show(); picker_button->show(); @@ -96,8 +95,7 @@ void TileMapLayerEditorTilesPlugin::_update_toolbar() { tools_settings_vsep_2->show(); bucket_contiguous_checkbox->show(); random_tile_toggle->show(); - scatter_label->show(); - scatter_spinbox->show(); + scatter_controls_container->set_visible(random_tile_toggle->is_pressed()); } } |