Merge pull request #56429 from PucklaMotzer09/tile_set_editor_hide
This commit is contained in:
commit
6994602e4f
|
@ -157,6 +157,17 @@ void TilesEditorPlugin::_update_editors() {
|
|||
|
||||
// Update the viewport.
|
||||
CanvasItemEditor::get_singleton()->update_viewport();
|
||||
|
||||
// Update visibility of bottom panel buttons.
|
||||
if (tileset_editor_button->is_pressed() && !tile_set.is_valid()) {
|
||||
if (tile_map) {
|
||||
editor_node->make_bottom_panel_item_visible(tilemap_editor);
|
||||
} else {
|
||||
editor_node->hide_bottom_panel();
|
||||
}
|
||||
}
|
||||
tileset_editor_button->set_visible(tile_set.is_valid());
|
||||
tilemap_editor_button->set_visible(tile_map);
|
||||
}
|
||||
|
||||
void TilesEditorPlugin::_notification(int p_what) {
|
||||
|
|
Loading…
Reference in New Issue