From ef74b3f99801431133959ced036cf46132f99230 Mon Sep 17 00:00:00 2001 From: emerycp Date: Fri, 7 Jul 2023 22:42:37 -0400 Subject: [PATCH] Change Title on New Project --- Editor/src/Windows/EditorInterface.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Editor/src/Windows/EditorInterface.cpp b/Editor/src/Windows/EditorInterface.cpp index b13aaad8..67ec3268 100644 --- a/Editor/src/Windows/EditorInterface.cpp +++ b/Editor/src/Windows/EditorInterface.cpp @@ -1277,6 +1277,8 @@ namespace Nuake { Ref project = Project::New(String::Split(fileName, '.')[0], "no description", finalPath); Engine::LoadProject(project); Engine::LoadScene(Scene::New()); + + Engine::GetCurrentWindow()->SetTitle("Nuake Engine - Editing " + project->Name); }