diff options
author | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2017-12-12 16:58:43 -0200 |
---|---|---|
committer | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2017-12-12 17:06:44 -0200 |
commit | a933b927ca5e4c416f2aa550b3168f2eca343b17 (patch) | |
tree | b44bd28606e48ac5dce7e5f0c9f328067a45386f | |
parent | 55962ce28fec5f06016ed3f66f52e6e84b817dbe (diff) |
Fixed Tileset editor button having the wrong text and not being translatable.
-rw-r--r-- | editor/plugins/tile_set_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/tile_set_editor_plugin.cpp b/editor/plugins/tile_set_editor_plugin.cpp index b8c57fd959..ae726b69ef 100644 --- a/editor/plugins/tile_set_editor_plugin.cpp +++ b/editor/plugins/tile_set_editor_plugin.cpp @@ -244,7 +244,7 @@ TileSetEditor::TileSetEditor(EditorNode *p_editor) { MenuButton *options = memnew(MenuButton); panel->add_child(options); options->set_position(Point2(1, 1)); - options->set_text("Theme"); + options->set_text(TTR("Tile Set")); options->get_popup()->add_item(TTR("Add Item"), MENU_OPTION_ADD_ITEM); options->get_popup()->add_item(TTR("Remove Item"), MENU_OPTION_REMOVE_ITEM); options->get_popup()->add_separator(); |