From 3ab1759632ac47c09f3589b165c1a168d5aa9693 Mon Sep 17 00:00:00 2001 From: RadenTheFolf Date: Mon, 25 Aug 2025 16:52:12 -0400 Subject: [PATCH] Fix project manage title showing as (DEBUG) --- scene/main/window.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scene/main/window.cpp b/scene/main/window.cpp index 9b65e377a5..4d076f2c64 100644 --- a/scene/main/window.cpp +++ b/scene/main/window.cpp @@ -1419,6 +1419,8 @@ void Window::_notification(int p_what) { // Append a suffix to the window title to denote that the project is running // from a debug build (including the editor). Since this results in lower performance, // this should be clearly presented to the user. + if (tr_title.is_empty()) + break; tr_title = vformat("%s (DEBUG)", tr_title); } #endif