diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-06-16 09:59:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 09:59:47 +0200 |
commit | 941575b7b8673e49068aad07ef4736de48d65ea0 (patch) | |
tree | 9a5ec644f8845ba73cd8cc6ba32a52aee8baa15c /main | |
parent | 296bbe2483a57bae2516c2ef44d0f6639253de9b (diff) | |
parent | c850ccb7c084e84b536c6fa5f0c667ed49c27cf4 (diff) |
Merge pull request #61908 from Calinou/crash-handler-message-tweak-exported-project
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index b2667d11e6..7b5fa79008 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -603,7 +603,9 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph GLOBAL_DEF_RST("application/run/flush_stdout_on_print.debug", true); GLOBAL_DEF("debug/settings/crash_handler/message", - String("Please include this when reporting the bug on https://github.com/godotengine/godot/issues")); + String("Please include this when reporting the bug to the project developer.")); + GLOBAL_DEF("debug/settings/crash_handler/message.editor", + String("Please include this when reporting the bug on: https://github.com/godotengine/godot/issues")); MAIN_PRINT("Main: Parse CMDLine"); |