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
This commit is contained in:
Ray Molenkamp
2025-07-23 16:57:15 +02:00
committed by Ray molenkamp
parent d6252aa59a
commit 6c80332f0f

View File

@@ -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();