1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

i18n: Fix extract.py support for new TTRC

Also make compatible with Python 3.
This commit is contained in:
Rémi Verschelde
2019-06-16 21:57:34 +02:00
parent ea9a6672e0
commit e864237f1a
4 changed files with 10 additions and 10 deletions

View File

@@ -6385,7 +6385,7 @@ EditorNode::EditorNode() {
execute_outputs = memnew(RichTextLabel);
execute_output_dialog = memnew(AcceptDialog);
execute_output_dialog->add_child(execute_outputs);
execute_output_dialog->set_title(TTR(""));
execute_output_dialog->set_title("");
gui_base->add_child(execute_output_dialog);
EditorFileSystem::get_singleton()->connect("sources_changed", this, "_sources_changed");