diff options
author | Samuel Grigolato <samuel.grigolato@gmail.com> | 2016-06-26 17:03:42 -0300 |
---|---|---|
committer | Samuel Grigolato <samuel.grigolato@gmail.com> | 2016-06-28 20:14:30 -0300 |
commit | afab4168fd33e56beddb857625facdfca305c575 (patch) | |
tree | bcad7fb700221781de19d59b3a7ad2934244b587 /tools | |
parent | 10f411b47bd46fc28f780be9f70c20228ef4428c (diff) |
Add tile index prefixes in tile map editor plugin. #5420
Diffstat (limited to 'tools')
-rw-r--r-- | tools/editor/plugins/tile_map_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/tile_map_editor_plugin.cpp b/tools/editor/plugins/tile_map_editor_plugin.cpp index d5f85d3333..9d27ac8aa3 100644 --- a/tools/editor/plugins/tile_map_editor_plugin.cpp +++ b/tools/editor/plugins/tile_map_editor_plugin.cpp @@ -223,7 +223,7 @@ void TileMapEditor::_update_palette() { String name; if (tileset->tile_get_name(E->get())!="") { - name = tileset->tile_get_name(E->get()); + name = itos(E->get())+" - "+tileset->tile_get_name(E->get()); } else { name = "#"+itos(E->get()); } |