aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoshyaar2017-12-13 11:11:28 +0700
committerGitHub2017-12-13 11:11:28 +0700
commitc68b031b052467096a6d8f059e791facb09d82fa (patch)
treee765cb2d8d059dd8e10294947c6a87447148c03d
parentfb12d700c9f4f47c775fa1bebeeb40ff683b2ef2 (diff)
parenta933b927ca5e4c416f2aa550b3168f2eca343b17 (diff)
downloadgodot-c68b031b052467096a6d8f059e791facb09d82fa.tar.gz
godot-c68b031b052467096a6d8f059e791facb09d82fa.tar.zst
godot-c68b031b052467096a6d8f059e791facb09d82fa.zip
Merge pull request #14603 from YeldhamDev/tileset_button
Fixed Tileset editor button having the wrong text and not being translatable
Diffstat (limited to '')
-rw-r--r--editor/plugins/tile_set_editor_plugin.cpp2
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 b8c57fd95..ae726b69e 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();