From 843174e5a410aea5abf094a52c0d516cf6cea14a Mon Sep 17 00:00:00 2001 From: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Date: Wed, 9 Oct 2024 15:51:22 -0500 Subject: [PATCH] Fix reverted string change Seems to have accidentally changed repo URL in previous commit. Reverted and string change readded in this commit. --- editor/export/export_template_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/export/export_template_manager.cpp b/editor/export/export_template_manager.cpp index 202b7ba06a7..be1e19bef99 100644 --- a/editor/export/export_template_manager.cpp +++ b/editor/export/export_template_manager.cpp @@ -1105,7 +1105,7 @@ ExportTemplateManager::ExportTemplateManager() { install_file_dialog->set_access(FileDialog::ACCESS_FILESYSTEM); install_file_dialog->set_file_mode(FileDialog::FILE_MODE_OPEN_FILE); install_file_dialog->set_current_dir(EDITOR_DEF("_export_template_download_directory", "")); - install_file_dialog->add_filter("*.tpz", TTR("Godot Export Templates")); + install_file_dialog->add_filter("*.tpz", TTR("Redot Export Templates")); install_file_dialog->connect("file_selected", callable_mp(this, &ExportTemplateManager::_install_file_selected).bind(false)); add_child(install_file_dialog);