From 6c80332f0fc4b5b2d024e2686401dc7ddaf8317e Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Wed, 23 Jul 2025 16:57:15 +0200 Subject: [PATCH] Win: Disable bug report button on crash dialog This workflow has some issues that lead to a large influx of low quality reports, remove the button for now until a better workflow has been put in place. Pull Request: https://projects.blender.org/blender/blender/pulls/142272 --- source/blender/blenlib/intern/system_win32.cc | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/source/blender/blenlib/intern/system_win32.cc b/source/blender/blenlib/intern/system_win32.cc index afac15bac6e..72fa2b63fc9 100644 --- a/source/blender/blenlib/intern/system_win32.cc +++ b/source/blender/blenlib/intern/system_win32.cc @@ -596,10 +596,17 @@ void BLI_windows_exception_show_dialog(const char *filepath_crashlog, std::wstring(filepath_crashlog_utf16); TASKDIALOGCONFIG config = {0}; - const TASKDIALOG_BUTTON buttons[] = {{IDRETRY, L"Restart"}, + const TASKDIALOG_BUTTON buttons[] = { + {IDRETRY, L"Restart"}, +#if 0 + /* This lead to a large influx of low quality reports on the tracker, + and has been disabled for that reason, we can re-enable this when + a better workflow has been established. */ {IDOK, L"Report a Bug"}, - {IDHELP, L"View Crash Log"}, - {IDCLOSE, L"Close"}}; +#endif + {IDHELP, L"View Crash Log"}, + {IDCLOSE, L"Close"} + }; config.cbSize = sizeof(config); config.hwndParent = GetActiveWindow();