mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-10 21:09:38 +01:00
Fix index error.
This commit is contained in:
parent
3be690da76
commit
432478cb70
@ -3527,7 +3527,7 @@ void LayeredTileMapLayerEditorTerrainsPlugin::_update_tiles_list() {
|
|||||||
terrains_tile_list->set_item_metadata(item_index, list_metadata_dict);
|
terrains_tile_list->set_item_metadata(item_index, list_metadata_dict);
|
||||||
|
|
||||||
terrains_tile_list->add_icon_item(main_vbox_container->get_theme_icon("TerrainPath", "EditorIcons"));
|
terrains_tile_list->add_icon_item(main_vbox_container->get_theme_icon("TerrainPath", "EditorIcons"));
|
||||||
item_index = terrains_tile_list->get_item_count();
|
item_index = terrains_tile_list->get_item_count() - 1;
|
||||||
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."));
|
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 = Dictionary();
|
||||||
list_metadata_dict["type"] = SELECTED_TYPE_PATH;
|
list_metadata_dict["type"] = SELECTED_TYPE_PATH;
|
||||||
|
Loading…
Reference in New Issue
Block a user