diff options
author | BleedingXiko <66162192+BleedingXiko@users.noreply.github.com> | 2023-11-27 16:40:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 16:40:38 -0800 |
commit | 971b0a7bdadf2294ef5b384a44b42deb6850c851 (patch) | |
tree | 0557361feb81df130628e33e55bf78c92de04207 | |
parent | eda44bfe109d7f15c5a965db2d65c8a17ce4b7d0 (diff) | |
download | redot-engine-971b0a7bdadf2294ef5b384a44b42deb6850c851.tar.gz |
fix typo in tile_map_editor.cpp
-rw-r--r-- | editor/plugins/tiles/tile_map_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/tiles/tile_map_editor.cpp b/editor/plugins/tiles/tile_map_editor.cpp index 6bee3660cf..c5c036d785 100644 --- a/editor/plugins/tiles/tile_map_editor.cpp +++ b/editor/plugins/tiles/tile_map_editor.cpp @@ -3436,7 +3436,7 @@ void TileMapEditorTerrainsPlugin::_update_tiles_list() { terrains_tile_list->set_item_metadata(item_index, list_metadata_dict); item_index = terrains_tile_list->add_icon_item(main_vbox_container->get_editor_theme_icon(SNAME("TerrainPath"))); - terrains_tile_list->set_item_tooltip(item_index, TTR("Path mode: paints a terrain, thens connects it to the previous tile painted within the same stroke.")); + terrains_tile_list->set_item_tooltip(item_index, TTR("Path mode: paints a terrain, then connects it to the previous tile painted within the same stroke.")); list_metadata_dict = Dictionary(); list_metadata_dict["type"] = SELECTED_TYPE_PATH; terrains_tile_list->set_item_metadata(item_index, list_metadata_dict); |