summaryrefslogtreecommitdiffstats
path: root/editor/plugins/tiles
diff options
context:
space:
mode:
authorSébastien Dunne Fulmer <createdbyseb@gmail.com>2024-08-29 12:17:38 +0100
committerSébastien Dunne Fulmer <createdbyseb@gmail.com>2024-08-29 12:17:38 +0100
commitaaa157f929a59ed6e22b4e628fb135c414eecbe2 (patch)
tree3302859a445350628db866c4bcebf7b2043e96bb /editor/plugins/tiles
parentfd7239cfab228c50777cd54a8bf6eb279a02ef81 (diff)
downloadredot-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.cpp6
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());
}
}