diff options
author | Thomas Herzog <thomas.herzog@mail.com> | 2018-08-08 16:47:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 16:47:32 +0200 |
commit | e9c083ad62b843e64d20ca04d05d0f3858016cfa (patch) | |
tree | 3ef0e9f95b59ea08a6d6cbd96074df0a0a74cf07 | |
parent | b67f98272394d6f20913d471c2db9067a61d25dc (diff) | |
parent | c541430315cdd408bd9f0311f1ef491ecbdbf784 (diff) |
Merge pull request #20808 from Calinou/fix-ttr-typo
Fix a typo in a TTR() call
-rw-r--r-- | editor/editor_node.cpp | 2 |
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; |