From f3b95560f4c44876507b76a2c5fa99d4b09ad306 Mon Sep 17 00:00:00 2001 From: gaisama <> Date: Fri, 5 Jul 2019 15:11:46 -0400 Subject: [PATCH] Set a default value for project name when installing a project. If I download a template named KewlGame, we should not force the user to have to type that name in order to complete the installation process. The user can still rename it if they wish to but we should be providing a default value. This quality of life enhancement will improve the workflow for newcomers to Godot who typically attempt to install a template as their first action within the program. --- editor/project_manager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp index 4b3d468a612..e013aae164c 100644 --- a/editor/project_manager.cpp +++ b/editor/project_manager.cpp @@ -765,6 +765,7 @@ public: set_title(TTR("Install Project:") + " " + zip_title); get_ok()->set_text(TTR("Install & Edit")); + project_name->set_text(zip_title); name_container->show(); install_path_container->hide(); rasterizer_container->hide();