summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2018-08-08 16:30:23 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2018-08-08 16:30:23 +0200
commitc541430315cdd408bd9f0311f1ef491ecbdbf784 (patch)
tree3ef0e9f95b59ea08a6d6cbd96074df0a0a74cf07
parentb67f98272394d6f20913d471c2db9067a61d25dc (diff)
Fix a typo in a TTR() call
-rw-r--r--editor/editor_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index f1aebb5b9a..81b7a66361 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -1227,7 +1227,7 @@ void EditorNode::_dialog_action(String p_file) {
Error err = ResourceSaver::save(p_file, tileset);
if (err) {
- show_accept(TRR("Error saving TileSet!"), TTR("OK"));
+ show_accept(TTR("Error saving TileSet!"), TTR("OK"));
return;
}
} break;